Further progress towards modularization.

At this point, I have only 2 fails in the Node build, but I'm doing a
bunch of manual stuff locally and still have a bunch of hacks.
This commit is contained in:
Yehuda Katz
2013-07-24 05:03:27 +00:00
parent da130f7745
commit f5c8484ea0
15 changed files with 129 additions and 79 deletions
+8 -5
View File
@@ -6,16 +6,19 @@ var errors = 0,
testDir = path.dirname(__dirname),
grep = process.argv[2];
var files = [ testDir + "/basic.js" ];
var files = fs.readdirSync(testDir)
.filter(function(name) { return (/.*\.js$/).test(name); })
.map(function(name) { return testDir + '/' + name; });
run('./node', function() {
run('./browser', function() {
run('./runtime', function() {
process.exit(errors);
});
});
process.exit(errors);
//run('./browser', function() {
//run('./runtime', function() {
//process.exit(errors);
//});
//});
});