diff options
Diffstat (limited to 'tests/test_other.py')
-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): |