diff 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
line wrap: on
line diff
--- a/tester.sh	Tue Oct 09 02:50:00 2007 +0200
+++ b/tester.sh	Tue Oct 09 06:21:30 2007 +0200
@@ -24,10 +24,10 @@
     llvmdc $1 -Itest -odtest -c
     exit $?
 elif [ "$2" = "gdb" ]; then
-    gdb --args llvmdc $1 -Itest -odtest '-c'
+    gdb --args llvmdc $1 -Itest -odtest -c
     exit $?
 elif [ "$2" = "gdbrun" ]; then
-    llvmdc $1 -Itest -odtest '-c' &&
+    llvmdc $1 -Itest -odtest -c &&
     gdb $1
     exit $?
 else