blob: 1d149fffee9d3c8a74d4692551073378b559c66d [file] [log] [blame]
/**
* TEST BOOTSTRAP FILE
* Runs through any bs to make sure the tests are good to go.
**/
var fs = require('fs'),
path = require('path'),
util = require('./src/util'),
ncallbacks=require('ncallbacks'),
platforms = require('./platforms');
var end = ncallbacks(platforms.length, function() {
process.exit(0);
});
// If a platform library dependency does not exist, will clone it down.
platforms.forEach(function(p) {
if (!util.havePlatformLib(p)) {
util.getPlatformLib(p, end);
}
});