diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-05-15 16:57:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-15 23:57:50 +0800 |
commit | 9daa2fb6f50aad11d4a6b83db97411eedfa0d143 (patch) | |
tree | 1467756a4f28ac39315c6476f5d00b24d6250cf5 /test/release | |
parent | 8d81d264f46b78a86491bfa6e33817cd7237f43f (diff) | |
download | tracifyjs-9daa2fb6f50aad11d4a6b83db97411eedfa0d143.tar.gz tracifyjs-9daa2fb6f50aad11d4a6b83db97411eedfa0d143.zip |
benchmark without validation by default (#3901)
Diffstat (limited to 'test/release')
-rw-r--r-- | test/release/benchmark.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/release/benchmark.js b/test/release/benchmark.js index c4b10fbc..1db557b6 100644 --- a/test/release/benchmark.js +++ b/test/release/benchmark.js @@ -9,6 +9,6 @@ require("./run")([ "-mc keep_fargs=false,passes=3,pure_getters,unsafe,unsafe_comps,unsafe_math,unsafe_proto", ].map(function(options) { var args = options.split(/ /); - args.unshift("test/benchmark.js"); + args.unshift("test/benchmark.js", "--validate"); return args; })); |