comparison tests/runminitest.d @ 468:45a67b6f1310

Removed the 'needsstorage' thing from Dsymbol. Arguments are not always given storage when applicable. This is not longer treat specially in this regard. Code for accessing nested variables and contexts rewritten. Probably more. Fairly well tested.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 04 Aug 2008 02:59:34 +0200
parents ea991021a56a
children 6aaa3d3c1183
comparison
equal deleted inserted replaced
467:261b05cf4d1c 468:45a67b6f1310
53 foreach(v; args[1..$]) { 53 foreach(v; args[1..$]) {
54 cmd ~= ' '; 54 cmd ~= ' ';
55 cmd ~= v; 55 cmd ~= v;
56 } 56 }
57 int cl = classify(testname); 57 int cl = classify(testname);
58 if (cl == COMPILE || cl == NOCOMPILE)
59 cmd ~= " -c";
58 writefln(cmd); 60 writefln(cmd);
59 if (system(cmd) != 0) { 61 if (system(cmd) != 0) {
60 if (cl != NOCOMPILE) 62 if (cl != NOCOMPILE)
61 compilefailed ~= c; 63 compilefailed ~= c;
62 } 64 }