changeset 1429:9081d916df1d

Fix - add Path.native for mingw support...thanks mp4/jaffa
author Kelly Wilson <wilsonk cpsc.ucalgary.ca>
date Fri, 29 May 2009 01:08:39 -0600
parents 91ddebba88e9
children 3c880e2d80e7
files tests/runminitest.d
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tests/runminitest.d	Wed May 27 12:42:28 2009 -0600
+++ b/tests/runminitest.d	Fri May 29 01:08:39 2009 -0600
@@ -69,7 +69,7 @@
                 compilefailed ~= c.toString;
         }
         else if (cl == RUN || cl == NORUN) {
-            if (system(toStringz("obj/" ~ testname)) != 0) {
+            if (system(toStringz(Path.native("obj/" ~ testname))) != 0) {
                 if (cl == RUN)
                     runfailed ~= c.toString;
             }