summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-09-12 17:19:09 -0700
committerRyan Dahl <ry@tinyclouds.org>2011-09-12 17:32:52 -0700
commit0aad61e80205baa5e7e4b4bdc81f53f17edc983c (patch)
tree252fa268dd89cc5ff55e80be5de296dad83388a4 /test
parent190abcac9debb2f4c729af32f88703d26026a049 (diff)
downloadnode-new-0aad61e80205baa5e7e4b4bdc81f53f17edc983c.tar.gz
Use net_uv instead of net_legacy for stdio
Also temporary hack to prevent process.stdout from keeping event loop alive by calling uv_unref on process.stdout initialization.
Diffstat (limited to 'test')
-rw-r--r--test/simple/test-module-load-list.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/simple/test-module-load-list.js b/test/simple/test-module-load-list.js
index 513bb68ad4..1c3cc07a49 100644
--- a/test/simple/test-module-load-list.js
+++ b/test/simple/test-module-load-list.js
@@ -87,15 +87,13 @@ if (!process.features.uv) {
// unix libuv backend.
expected = expected.concat([
'NativeModule console',
- 'NativeModule net_legacy',
+ 'NativeModule net_uv',
'NativeModule timers_uv',
'Binding timer_wrap',
'NativeModule _linklist',
- 'Binding net',
- 'NativeModule freelist',
- 'Binding io_watcher',
'NativeModule tty',
'NativeModule tty_posix',
+ 'Binding pipe_wrap',
'NativeModule readline'
]);
}