diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2019-10-28 16:04:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-28 16:04:07 +0800 |
commit | 95618793a4b85775a8958e239cb4f192822dc1f1 (patch) | |
tree | 5b989f119f0d7f0fae0b0027446c4ccc80e12797 | |
parent | 2f3b46021239c88e4eb38a8d26ae105aaf78d2d1 (diff) | |
download | tracifyjs-95618793a4b85775a8958e239cb4f192822dc1f1.tar.gz tracifyjs-95618793a4b85775a8958e239cb4f192822dc1f1.zip |
fix corner case in ufuzz (#3538)
-rw-r--r-- | test/ufuzz/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ufuzz/index.js b/test/ufuzz/index.js index e6ee3fde..51e79ed6 100644 --- a/test/ufuzz/index.js +++ b/test/ufuzz/index.js @@ -1060,7 +1060,7 @@ function log(options) { errorln("//============================================================="); if (!ok) errorln("// !!!!!! Failed... round " + round); errorln("// original code"); - try_beautify(orig_code(options.compress.unsafe_math), options.toplevel, original_result, errorln); + try_beautify(orig_code(options.compress && options.compress.unsafe_math), options.toplevel, original_result, errorln); errorln(); errorln(); errorln("//-------------------------------------------------------------"); |