Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-08-02 03:05:07 +0400
committerRyan Dahl <ry@tinyclouds.org>2011-08-02 03:05:57 +0400
commit99c15e5661ab2e4063db36a849a57f751c97606a (patch)
tree9b8ed645758c06140f701f19a33dc35aad44f695 /test
parentced0b14185614613573664d51913bea4296ef75e (diff)
child_process_uv: don't attempt to pass test-child-process-deprecated-api
Diffstat (limited to 'test')
-rw-r--r--test/simple/test-child-process-deprecated-api.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/simple/test-child-process-deprecated-api.js b/test/simple/test-child-process-deprecated-api.js
index 754c74bc4bb..cc930028e73 100644
--- a/test/simple/test-child-process-deprecated-api.js
+++ b/test/simple/test-child-process-deprecated-api.js
@@ -19,6 +19,9 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
+// We do not support this API with the libuv backend.
+if (process.features.uv) return;
+
var common = require('../common');
var assert = require('assert');
var spawn = require('child_process').spawn;