diff options
author | Alon Zakai (kripken) <alonzakai@gmail.com> | 2017-08-19 08:07:49 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2017-08-25 16:04:23 -0700 |
commit | e0c5e9cd83f2bc27c8f1ca3cc9c6a5029c6641b2 (patch) | |
tree | ff58b8b199747135c7036afb31489f6a1c0cdf3a /src | |
parent | e60fcd0ba97ed75440c6f838619455be7a5e90a3 (diff) | |
download | binaryen-e0c5e9cd83f2bc27c8f1ca3cc9c6a5029c6641b2.tar.gz binaryen-e0c5e9cd83f2bc27c8f1ca3cc9c6a5029c6641b2.tar.bz2 binaryen-e0c5e9cd83f2bc27c8f1ca3cc9c6a5029c6641b2.zip |
increase fuzz hang limit (to basically the point where the spec interpreter almost fails)
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/translate-to-fuzz.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/translate-to-fuzz.h b/src/tools/translate-to-fuzz.h index a7f86af13..36639ce84 100644 --- a/src/tools/translate-to-fuzz.h +++ b/src/tools/translate-to-fuzz.h @@ -87,7 +87,7 @@ private: // the number of runtime iterations (function calls, loop backbranches) we // allow before we stop execution with a trap, to prevent hangs. 0 means // no hang protection. - static const int HANG_LIMIT = 25; + static const int HANG_LIMIT = 100; // Optionally remove NaNs, which are a source of nondeterminism (which makes // cross-VM comparisons harder) |