summaryrefslogtreecommitdiff
path: root/ubsan.blacklist
Commit message (Collapse)AuthorAgeFilesLines
* Import emscripten's relooper, port it to the binaryen AST, and provide a C ↵Alon Zakai2016-05-051-0/+2
| | | | | API (#434) also ignore libstdc++ bug in ubsan
* Add Travis builds with sanitizersJF Bastien2016-01-101-0/+3
This triggers 5 independent build / test runs: - clang, no sanitizer; - clang, UB sanitizer; - clang, address sanitizer (disabled for now); - clang, thread sanitizer (disabled for now); - GCC. Enabling UBSan led to these changes: - Fix a bunch of undefined behavior throughout the code base. - Fix some tests that relied on that undefined behavior. - Make some of the tests easier to debug by printing their command line. - Add ubsan blacklist to work around libstdc++ bug. - Example testcase also needs sanitizer because libsupport.a uses it.