diff tester.d @ 132:1700239cab2e trunk

[svn r136] MAJOR UNSTABLE UPDATE!!! Initial commit after moving to Tango instead of Phobos. Lots of bugfixes... This build is not suitable for most things.
author lindquist
date Fri, 11 Jan 2008 17:57:40 +0100
parents 6fcc08a4d406
children
line wrap: on
line diff
--- a/tester.d	Fri Jan 04 01:38:42 2008 +0100
+++ b/tester.d	Fri Jan 11 17:57:40 2008 +0100
@@ -23,7 +23,7 @@
 
 string testFileName(string test, string ext="")
 {
-    return "test/"~test~ext;
+    return "tangotests/"~test~ext;
 }
 
 // couldnt get execvp to work
@@ -95,7 +95,7 @@
     string test = args[1];
     string kind = args[2];
 
-    string[] compilelink = ["-Itest","-odtest"];
+    string[] compilelink = ["-Itangotests","-odtangotests"];
     compilelink ~= args[3..$];
     string[] compileonly = compilelink.dup;