diff options
Diffstat (limited to 'scripts/test/shared.py')
-rw-r--r-- | scripts/test/shared.py | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py index e13004dcd..d9e3def46 100644 --- a/scripts/test/shared.py +++ b/scripts/test/shared.py @@ -170,7 +170,6 @@ NATIVEXX = (os.environ.get('CXX') or which('mingw32-g++') or NODEJS = os.getenv('NODE', which('nodejs') or which('node')) MOZJS = which('mozjs') or which('spidermonkey') V8 = which('v8') or which('d8') -EMCC = which('emcc') BINARYEN_INSTALL_DIR = os.path.dirname(options.binaryen_bin) WASM_OPT = [os.path.join(options.binaryen_bin, 'wasm-opt')] @@ -237,8 +236,6 @@ V8_OPTS = [ '--experimental-wasm-return-call' ] -has_vanilla_llvm = False - # external tools try: @@ -262,26 +259,6 @@ if MOZJS is None: warn('no mozjs found (did not check native wasm support nor asm.js' ' validation)') -try: - if EMCC is not None: - subprocess.check_call([EMCC, '--version'], - stdout=subprocess.PIPE, - stderr=subprocess.PIPE) -except (OSError, subprocess.CalledProcessError): - EMCC = None -if EMCC is None: - warn('no emcc found (did not check non-vanilla emscripten/binaryen' - ' integration)') - -has_vanilla_emcc = False -try: - subprocess.check_call( - [os.path.join(options.binaryen_test, 'emscripten', 'emcc'), '--version'], - stdout=subprocess.PIPE, stderr=subprocess.PIPE) - has_vanilla_emcc = True -except (OSError, subprocess.CalledProcessError): - pass - # utilities @@ -393,9 +370,6 @@ def get_tests(test_dir, extensions=[]): if not options.interpreter: warn('no interpreter provided (did not test spec interpreter validation)') -if not has_vanilla_emcc: - warn('no functional emcc submodule found') - if not options.spec_tests: options.spec_tests = get_tests(get_test_dir('spec'), ['.wast']) |