Browse Source

child_process_uv: don't attempt to pass test-child-process-deprecated-api

v0.7.4-release
Ryan Dahl 14 years ago
parent
commit
99c15e5661
  1. 1
      Makefile
  2. 3
      test/simple/test-child-process-deprecated-api.js

1
Makefile

@ -241,6 +241,7 @@ UVTEST += simple/test-child-process-cwd
UVTEST += simple/test-child-process-env
UVTEST += simple/test-child-process-stdin
UVTEST += simple/test-child-process-ipc
UVTEST += simple/test-child-process-deprecated-api
test-uv: all

3
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;

Loading…
Cancel
Save