aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/test_other.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_other.py b/tests/test_other.py
index 1fc1c60b..aa11c973 100644
--- a/tests/test_other.py
+++ b/tests/test_other.py
@@ -2010,6 +2010,6 @@ a(int [32], char [5]*)
def test_simd(self):
self.clear()
- Popen([PYTHON, EMCC, path_from_root('tests', 'linpack.c'), '-DSP', '--llvm-opts', '''['-O3', '-vectorize', '-vectorize-loops', '-bb-vectorize-vector-bits=128', '-force-vector-width=4']''']).communicate()
- self.assertContained('hello, world!', run_js('a.out.js'))
+ Popen([PYTHON, EMCC, path_from_root('tests', 'linpack.c'), '-O2', '-DSP', '--llvm-opts', '''['-O3', '-vectorize', '-vectorize-loops', '-bb-vectorize-vector-bits=128', '-force-vector-width=4']''']).communicate()
+ self.assertContained('Unrolled Single Precision', run_js('a.out.js'))