Files
interactive/SDK/version_3/libs/neon-0.29.5/test/common/run.sh
T
2026-08-07 17:38:18 +09:00

20 lines
223 B
Bash
Executable File

#!/bin/sh
rm -f debug.log
rm -f child.log
# for shared builds.
LD_LIBRARY_PATH=../src/.libs:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH
for f in $*; do
if ./$f; then
:
else
echo FAILURE
exit 1
fi
done
exit 0