summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFedor Indutny <fedor@indutny.com>2014-04-11 00:53:47 +0400
committerFedor Indutny <fedor@indutny.com>2014-04-11 00:54:12 +0400
commit525fad473bfafc2f44e1ab591152ca338fe45f2b (patch)
tree59a74e5c6d4adefcb2a8eec9116766031c05c267
parent045f765a1ac0632f90be0de3bf9630422aeee249 (diff)
downloadnode-525fad473bfafc2f44e1ab591152ca338fe45f2b.tar.gz
test: remove vm-infinite-recursion
It doesn't work reliably on all platforms. see #7432 Signed-off-by: Fedor Indutny <fedor@indutny.com>
-rw-r--r--test/simple/test-vm-infinite-recursion.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/simple/test-vm-infinite-recursion.js b/test/simple/test-vm-infinite-recursion.js
deleted file mode 100644
index 29ad02976..000000000
--- a/test/simple/test-vm-infinite-recursion.js
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright Joyent, Inc. and other Node contributors.
-//
-// Permission is hereby granted, free of charge, to any person obtaining a
-// copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to permit
-// persons to whom the Software is furnished to do so, subject to the
-// following conditions:
-//
-// The above copyright notice and this permission notice shall be included
-// in all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
-// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
-// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
-// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
-// USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-// Flags: --stack-size=128
-
-var assert = require('assert');
-var vm = require('vm');
-var s = 'vm.runInNewContext(s, { vm: vm, s: s })';
-
-assert.throws(function() {
- eval(s);
-}, /Maximum call stack/);