|
@ -58,7 +58,8 @@ checkExpected(); |
|
|
// Now do the test again after we console.log something.
|
|
|
// Now do the test again after we console.log something.
|
|
|
console.log("load console.log"); |
|
|
console.log("load console.log"); |
|
|
|
|
|
|
|
|
expected = expected.concat([ |
|
|
if (!process.features.uv) { |
|
|
|
|
|
expected = expected.concat([ |
|
|
'NativeModule console', |
|
|
'NativeModule console', |
|
|
'NativeModule net_legacy', |
|
|
'NativeModule net_legacy', |
|
|
'NativeModule timers_legacy', |
|
|
'NativeModule timers_legacy', |
|
@ -69,7 +70,21 @@ expected = expected.concat([ |
|
|
'Binding io_watcher', |
|
|
'Binding io_watcher', |
|
|
'NativeModule tty', |
|
|
'NativeModule tty', |
|
|
'NativeModule tty_posix', // FIXME branch on win32 here.
|
|
|
'NativeModule tty_posix', // FIXME branch on win32 here.
|
|
|
]); |
|
|
]); |
|
|
|
|
|
} else { |
|
|
|
|
|
expected = expected.concat([ |
|
|
|
|
|
'NativeModule console', |
|
|
|
|
|
'NativeModule net_legacy', |
|
|
|
|
|
'NativeModule timers_uv', |
|
|
|
|
|
'Binding timer_wrap', |
|
|
|
|
|
'NativeModule _linklist', |
|
|
|
|
|
'Binding net', |
|
|
|
|
|
'NativeModule freelist', |
|
|
|
|
|
'Binding io_watcher', |
|
|
|
|
|
'NativeModule tty', |
|
|
|
|
|
'NativeModule tty_posix' |
|
|
|
|
|
]); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
checkExpected(); |
|
|
checkExpected(); |
|
|
|
|
|
|
|
|