summaryrefslogtreecommitdiff
path: root/test/c
diff options
context:
space:
mode:
authorAlasdair Armstrong2019-03-06 14:11:24 +0000
committerAlasdair Armstrong2019-03-06 14:14:19 +0000
commit2b4018a07e9eead8bfe147611b24a4d5856b4d56 (patch)
tree456ce19e0ad0b413a3c4597008222425aba0e4f3 /test/c
parent2cd88a225adf5f382df85a046cd59c43e1436965 (diff)
Add option to slice out printing and tracing functions when generating C
Make instruction dependency graph use graph.ml Expose incremental graph building functions for performance in graph.mli
Diffstat (limited to 'test/c')
-rwxr-xr-xtest/c/run_tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/c/run_tests.py b/test/c/run_tests.py
index 4a02dd78..2ee44fca 100755
--- a/test/c/run_tests.py
+++ b/test/c/run_tests.py
@@ -95,7 +95,8 @@ xml += test_c('optimized C', '-O2', '-O', True)
xml += test_c('constant folding', '', '-Oconstant_fold', True)
xml += test_c('monomorphised C', '-O2', '-O -Oconstant_fold -auto_mono', True)
xml += test_c('full optimizations', '-O2 -mbmi2 -DINTRINSICS', '-O -Oconstant_fold', True)
-xml += test_c('address sanitised', '-O2 -fsanitize=undefined', '-O', False)
+xml += test_c('specialization', '-O1', '-O -c_specialize', True)
+xml += test_c('undefined behavior sanitised', '-O2 -fsanitize=undefined', '-O', False)
xml += test_interpreter('interpreter')