diff options
author | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2015-02-13 09:25:21 -0800 |
---|---|---|
committer | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2015-02-13 09:25:21 -0800 |
commit | 510a69383bad7709ab3aca5175e231408bc3f638 (patch) | |
tree | 69a1f67f566faeea8043fe1d8ed907363bf3b766 /tools | |
parent | bf275ece903a499a71aa4f3eaffeca4ef5a4d2bb (diff) | |
parent | 96bd5f6b7671c8a3d040dea5b482782e0065a1ce (diff) |
Merge pull request #512 from ctiller/ubsan
Add ubsan support
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/run_tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index ab6728b4ee..0f3222b78c 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -111,6 +111,7 @@ _CONFIGS = { 'tsan': SimpleConfig('tsan', environ={ 'TSAN_OPTIONS': 'suppressions=tools/tsan_suppressions.txt'}), 'msan': SimpleConfig('msan'), + 'ubsan': SimpleConfig('ubsan'), 'asan': SimpleConfig('asan', environ={ 'ASAN_OPTIONS': 'detect_leaks=1:color=always:suppressions=tools/tsan_suppressions.txt'}), 'gcov': SimpleConfig('gcov'), |