diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-08-30 10:38:56 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-08-30 11:32:52 -0700 |
commit | 19d175c00a94e66f96b2535fae7b4d4fad3c2248 (patch) | |
tree | 0a459fc1452cc9f4e3dd4881e28f285b81d0dac8 /tests | |
parent | 939a98cbe90e556d586d82d845a7b8e96aceda24 (diff) |
disable test_stdin in node (temporarily) and v8
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_other.py | 3 |
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): |