Displaying 2 results from an estimated 2 matches for "flac__test_with_valrgind".
Did you mean:
flac__test_with_valgrind
2013 Apr 09
3
Check level not passed to tests
...turns out these configuration options aren't passed to the test
scripts at all. I do not fully understand how Makefiles or environment
variables work, but my test/Makefile has the following lines
FLAC__TEST_LEVEL = 0
FLAC__TEST_WITH_VALGRIND = no
[...]
TESTS_ENVIRONMENT = FLAC__TEST_LEVEL=0 FLAC__TEST_WITH_VALRGIND=no
However, when I added the following line at the bottom of
test/test_streams.sh
echo "Test level was $FLAC__TEST_LEVEL"
the output I got was "Test level was 1". I traced it back to
if [ x"$FLAC__TEST_LEVEL" = x ] ; then
FLAC__TEST_LEVEL=1
fi
It turns out $...
2013 Apr 21
0
[PATCH] Re: Check level not passed to tests
...ions aren't passed to the test
> scripts at all. I do not fully understand how Makefiles or environment
> variables work, but my test/Makefile has the following lines
>
> FLAC__TEST_LEVEL = 0
> FLAC__TEST_WITH_VALGRIND = no
> [...]
> TESTS_ENVIRONMENT = FLAC__TEST_LEVEL=0 FLAC__TEST_WITH_VALRGIND=no
>
> However, when I added the following line at the bottom of
> test/test_streams.sh
>
> echo "Test level was $FLAC__TEST_LEVEL"
>
> the output I got was "Test level was 1". I traced it back to
>
> if [ x"$FLAC__TEST_LEVEL" = x ] ; then
&...