Clean up gc tests

This fixes the additional issues brought up in #3179.
This commit is contained in:
isaacs 2012-05-04 10:32:42 -07:00
parent 0abe42a0f4
commit a9fc63f7a1
5 changed files with 27 additions and 11 deletions

View File

@ -10,7 +10,7 @@ var http = require('http'),
done = 0,
count = 0,
countGC = 0,
todo = 18,
todo = 500,
common = require('../common.js'),
assert = require('assert'),
PORT = common.PORT;
@ -45,8 +45,11 @@ function afterGC(){
countGC ++;
}
var timer;
function statusLater() {
setTimeout(status, 1);
gc();
if (timer) clearTimeout(timer);
timer = setTimeout(status, 1);
}
function status() {

View File

@ -11,7 +11,7 @@ var http = require('http'),
done = 0,
count = 0,
countGC = 0,
todo = 18,
todo = 500,
common = require('../common.js'),
assert = require('assert'),
PORT = common.PORT;
@ -49,8 +49,11 @@ function afterGC(){
countGC ++;
}
var timer;
function statusLater() {
setTimeout(status, 1);
gc();
if (timer) clearTimeout(timer);
timer = setTimeout(status, 1);
}
function status() {

View File

@ -13,7 +13,7 @@ var http = require('http'),
done = 0,
count = 0,
countGC = 0,
todo = 18,
todo = 500,
common = require('../common.js'),
assert = require('assert'),
PORT = common.PORT;
@ -52,8 +52,11 @@ function afterGC(){
countGC ++;
}
var timer;
function statusLater() {
setTimeout(status, 1);
gc();
if (timer) clearTimeout(timer);
timer = setTimeout(status, 1);
}
function status() {

View File

@ -10,7 +10,7 @@ var http = require('http'),
done = 0,
count = 0,
countGC = 0,
todo = 5,
todo = 500,
common = require('../common.js'),
assert = require('assert'),
PORT = common.PORT;
@ -47,8 +47,11 @@ function afterGC(){
countGC ++;
}
var timer;
function statusLater() {
setTimeout(status, 1);
gc();
if (timer) clearTimeout(timer);
timer = setTimeout(status, 1);
}
function status() {
@ -61,3 +64,4 @@ function status() {
process.exit(0);
}
}

View File

@ -13,7 +13,7 @@ var net = require('net'),
done = 0,
count = 0,
countGC = 0,
todo = 18,
todo = 500,
common = require('../common.js'),
assert = require('assert'),
PORT = common.PORT;
@ -36,7 +36,7 @@ function getall() {
count++;
weak(req, afterGC);
})()
})();
}
}
@ -44,8 +44,11 @@ function afterGC(){
countGC ++;
}
var timer;
function statusLater() {
setTimeout(status, 1);
gc();
if (timer) clearTimeout(timer);
timer = setTimeout(status, 1);
}
function status() {