summaryrefslogtreecommitdiff
path: root/test/crash
Commit message (Collapse)AuthorAgeFilesLines
* More validation tests and fixes for SIMD (#1964)Thomas Lively2019-03-252-18/+0
| | | | | Moves the feature validation unit test file to a new directory, 'unit', and adds new tests for SIMD and sign-ext. Adds validation for v128 globals and v128.const.
* Discover and run unit tests from check.py (#1948)Thomas Lively2019-03-192-0/+18
| | | | | | unittest is Python's standard testing framework, so this change allows arbitrary tests to be written without introducing any new dependencies or code in check.py. A new test that was not possible to write before is also included. It is the first of many.
* Don't error on too many locals - just oom (#1822)Alon Zakai2018-12-131-0/+0
| | | I think I added this error for fuzzing, but it is harmful as it prevents a module with too many locals from being loaded - if we could load it, we might be able to optimize it to have fewer locals...
* Misc tiny fuzz fixes (#1668)Alon Zakai2018-09-121-0/+0
| | | | | | | | | | | | * show a proper error for an empty asm2wasm input * handle end of input in processExpressions in binary reading * memory segment sizes should be unsigned * validate input in wasm-ctor-eval * update tests
* Binary format local parsing fixes (#1664)Alon Zakai2018-09-111-0/+0
| | | | | | * Error if there are more locals than browsers allow (50,000). We usually just warn about stuff like this, but we do need some limit (or else we hang or OOM), and if so, why not use the agreed-upon Web limit. * Do not generate nice string names for locals in binary parsing - the name is just $var$x instead of $x, so not much benefit, and worse as our names are interned this is actually slow (which is why the fuzz testcase here hangs instead of OOMing). Testcases and bugreport in #1663.
* Fix 2 binary fuzz bugs (#1323)Alon Zakai2017-12-142-0/+0
* Check if there is a currFunction before using it (we need it for some stacky code; a valid wasm wouldn't need a function in that location anyhow, as what can be put in a memory/table offset is very limited). * Huge alignment led us to do a power of 2 shift that is undefined behavior. Also adds a test facility to check we don't crash on testcases.