diff options
Diffstat (limited to 'scripts/test/shared.py')
-rw-r--r-- | scripts/test/shared.py | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py index 4d2cb21b4..146856f6c 100644 --- a/scripts/test/shared.py +++ b/scripts/test/shared.py @@ -49,9 +49,6 @@ def parse_args(args): help=('If set, the whole test suite will run to completion independent of' ' earlier errors.')) parser.add_argument( - '--interpreter', dest='interpreter', default='', - help='Specifies the wasm interpreter executable to run tests on.') - parser.add_argument( '--binaryen-bin', dest='binaryen_bin', default='', help=('Specifies a path to where the built Binaryen executables reside at.' ' Default: bin/ of current directory (i.e. assume an in-tree build).' @@ -261,17 +258,6 @@ except (OSError, subprocess.CalledProcessError): if NODEJS is None: warn('no node found (did not check proper js form)') -try: - if MOZJS is not None: - subprocess.check_call([MOZJS, '--version'], - stdout=subprocess.PIPE, - stderr=subprocess.PIPE) -except (OSError, subprocess.CalledProcessError): - MOZJS = None -if MOZJS is None: - warn('no mozjs found (did not check native wasm support nor asm.js' - ' validation)') - # utilities @@ -382,10 +368,6 @@ def get_tests(test_dir, extensions=[]): return sorted(tests) -if not options.interpreter: - warn('no interpreter provided (did not test spec interpreter validation)') - - if not options.spec_tests: options.spec_tests = get_tests(get_test_dir('spec'), ['.wast']) else: |