aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-02-15 16:39:56 -0500
committerAlon Zakai <alonzakai@gmail.com>2012-02-15 17:00:25 -0500
commitd8e25261b69dd4cd5acaacf6c76d7c658c25e9bd (patch)
tree47277d9c408afebdb96a604816e82d08beb7163b /tests/runner.py
parentb16a890dc7e1435497a1b97b1a0fb7b0987faaef (diff)
support compiling .so files directly in emcc
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-xtests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index ac422e9e..a99a8320 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -5657,7 +5657,7 @@ Options that are modified or new in %s include:
# emcc src.cpp -c and emcc src.cpp -o src.[o|bc] ==> should give a .bc file
# regression check: -o js should create "js", with bitcode content
- for args in [['-c'], ['-o', 'src.o'], ['-o', 'src.bc'], ['-o', 'js']]:
+ for args in [['-c'], ['-o', 'src.o'], ['-o', 'src.bc'], ['-o', 'src.so'], ['-o', 'js']]:
target = args[1] if len(args) == 2 else 'hello_world.o'
clear()
Popen([compiler, path_from_root('tests', 'hello_world' + suffix)] + args, stdout=PIPE, stderr=PIPE).communicate()