comparison runalltests.d @ 100:5071469303d4 trunk

[svn r104] TONS OF FIXES. Split up declaration, constant initializer gen and definition for globals, structs, classes and functions. Improved ClassInfo support (not complete), not in vtable yet. Fixed a bunch of forward reference problems. Much more. Major commit! :)
author lindquist
date Fri, 16 Nov 2007 08:21:47 +0100
parents 0b9b286b67b6
children
comparison
equal deleted inserted replaced
99:a676a7743642 100:5071469303d4
11 11
12 chdir("test"); 12 chdir("test");
13 13
14 auto contents = listdir(".", "*.d"); 14 auto contents = listdir(".", "*.d");
15 foreach(c; contents) { 15 foreach(c; contents) {
16 auto cmd = "llvmdc -quiet "~c; 16 string cmd = "llvmdc -quiet "~c;
17 foreach(v; args[1..$]) {
18 cmd ~= ' ';
19 cmd ~= v;
20 }
17 writefln(cmd); 21 writefln(cmd);
18 if (system(cmd) != 0) { 22 if (system(cmd) != 0) {
19 bad ~= c; 23 bad ~= c;
20 } 24 }
21 else if (system(getName(c)) != 0) { 25 else if (system(getName(c)) != 0) {