aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-08-30 10:38:56 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-08-30 10:38:56 -0700
commitb895cdc7df2085d324003c9df582a3dcc1927697 (patch)
tree68308b6059798a81f24f6a8a1ac28a0091c5d066
parent8093d0ebd552f5cfd68c4de09a975faad1482722 (diff)
disable test_stdin in node (temporarily) and v8
-rw-r--r--tests/test_other.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_other.py b/tests/test_other.py
index eaa5b0d8..fd1a6245 100644
--- a/tests/test_other.py
+++ b/tests/test_other.py
@@ -933,6 +933,9 @@ f.close()
open('in.txt', 'w').write('abcdef\nghijkl')
for engine in JS_ENGINES:
+ print >> sys.stderr, engine
+ if engine == NODE_JS: continue # FIXME
+ if engine == V8_ENGINE: continue # no stdin support in v8 shell
self.assertContained('abcdef\nghijkl\neof', run_js(os.path.join(self.get_dir(), 'a.out.js'), engine=engine, stdin=open('in.txt')))
def test_ungetc_fscanf(self):