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:
Vendored
+8
-5
@@ -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);
|
||||
//});
|
||||
//});
|
||||
});
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user