Add failing test-isolates2.js

This commit is contained in:
Ryan Dahl 2012-01-10 11:47:32 -08:00
parent 4cbcdb4b2c
commit d4ee61ffc7
4 changed files with 20 additions and 3 deletions

View File

@ -27,7 +27,11 @@ var net = require('net');
var socketCloses = 0;
var N = 10;
var n = fork(common.fixturesDir + '/fork2.js');
var options = {
thread: process.TEST_ISOLATE ? true : false
};
var n = fork(common.fixturesDir + '/fork2.js', [], options);
var messageCount = 0;

View File

@ -0,0 +1,13 @@
// Skip this test if Node is not compiled with isolates support.
if (!process.features.isolates) return;
var assert = require('assert');
// This is the same test as test-child-process-fork except it uses isolates
// instead of processes. process.TEST_ISOLATE is a ghetto method of passing
// some information into the other test.
process.TEST_ISOLATE = true;
require('./test-child-process-fork');
var numThreads = process.binding('isolates').count();
assert.ok(numThreads > 1);

View File

@ -3,11 +3,11 @@ if (!process.features.isolates) return;
var assert = require('assert');
// This is the same test as test-child-process-fork except it uses isolates
// This is the same test as test-child-process-fork2 except it uses isolates
// instead of processes. process.TEST_ISOLATE is a ghetto method of passing
// some information into the other test.
process.TEST_ISOLATE = true;
require('./test-child-process-fork');
require('./test-child-process-fork2');
var numThreads = process.binding('isolates').count();
assert.ok(numThreads > 1);