comparison tester.sh @ 35:3cfcb944304e trunk

[svn r39] * Updated to DMD 1.022 with the exception of: Bugzilla 278: dmd.conf search path doesn't work This fix was causing crashes for me :/ So for it's the old behaviour
author lindquist
date Tue, 09 Oct 2007 06:21:30 +0200
parents 860524276608
children 8b0e809563df
comparison
equal deleted inserted replaced
34:4648206ca213 35:3cfcb944304e
22 exit $? 22 exit $?
23 elif [ "$2" = "c" ]; then 23 elif [ "$2" = "c" ]; then
24 llvmdc $1 -Itest -odtest -c 24 llvmdc $1 -Itest -odtest -c
25 exit $? 25 exit $?
26 elif [ "$2" = "gdb" ]; then 26 elif [ "$2" = "gdb" ]; then
27 gdb --args llvmdc $1 -Itest -odtest '-c' 27 gdb --args llvmdc $1 -Itest -odtest -c
28 exit $? 28 exit $?
29 elif [ "$2" = "gdbrun" ]; then 29 elif [ "$2" = "gdbrun" ]; then
30 llvmdc $1 -Itest -odtest '-c' && 30 llvmdc $1 -Itest -odtest -c &&
31 gdb $1 31 gdb $1
32 exit $? 32 exit $?
33 else 33 else
34 echo "bad command or filename" 34 echo "bad command or filename"
35 fi 35 fi