mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
test/*.sh : Fix MALLOC_PERTURB initialization.
Was using '$(date +%N)', but that doesn't work on OSX or *BSD. Switched to using '$(date +%s)'.
This commit is contained in:
@@ -36,7 +36,7 @@ LD_LIBRARY_PATH=../src/share/replaygain_analysis/.libs:$LD_LIBRARY_PATH
|
||||
LD_LIBRARY_PATH=../objs/$BUILD/lib:$LD_LIBRARY_PATH
|
||||
export LD_LIBRARY_PATH
|
||||
export MALLOC_CHECK_=3
|
||||
export MALLOC_PERTURB_=$((1$(date +%N) % 255 + 1))
|
||||
export MALLOC_PERTURB_=$(($(date +%s) % 255 + 1))
|
||||
PATH=../src/test_grabbag/cuesheet:$PATH
|
||||
PATH=../src/test_grabbag/picture:$PATH
|
||||
PATH=../objs/$BUILD/bin:$PATH
|
||||
|
||||
Reference in New Issue
Block a user