Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.216.126.33
#!/bin/bash
set -e
# Parameters
DLLPATH_EXTRA=$1 # Path to supporting DLLs
CFLAGS_EXTRA=$2 # Extra C flags
LOG=run_tests.log
CFLAGS="-g -Igdtest/ -I. -I../src/ -D_WIN32 $CFLAGS_EXTRA"
LDFLAGS='-L../src -llibgd'
DLLPATH=../src:$DLLPATH_EXTRA
function run_gcc {
if msg=`gcc $* 2>&1`; then
true
else
echo "COMMAND: gcc $*" >> $LOG
echo $msg >> $LOG
false
fi
}
# Switch to the working directory
export PATH=$PATH:$DLLPATH
cd ../../tests
# Initial setup
echo "Setting up..."
[ -f $LOG ] && rm -f $LOG
[ -f test_config.h ] || echo '#define GDTEST_TOP_DIR "."' > test_config.h
run_gcc -c $CFLAGS gdtest/gdtest.c
echo "Running tests:"
count=0
failures=0
compile_failures=0
for test in `find . -name \*.c | grep -v '^./gdtest'`; do
count=`expr $count + 1`
exe=${test%.c}.exe
if run_gcc -o $exe $CFLAGS $LDFLAGS $test gdtest.o; then
true;
else
echo "COMPILE_FAIL: $test"
compile_failures=`expr $compile_failures + 1`
continue
fi
echo "Running $exe:" >> $LOG
if $exe 2>&1 >> $LOG; then
echo "PASS: $test"
else
failures=`expr $failures + 1`
echo "FAIL: $test"
fi
echo >> $LOG
done
echo "$failures failures and $compile_failures compile failures out of $count tests."
echo "Error messages in $LOG"
|