mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
10 lines
164 B
Bash
10 lines
164 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:../obj/lib
|
||
|
|
export LD_LIBRARY_PATH
|
||
|
|
|
||
|
|
if ../obj/bin/test_unit ; then : ; else
|
||
|
|
echo "ERROR during testgen" 1>&2
|
||
|
|
exit 1
|
||
|
|
fi
|