aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/benchmark.js2
-rw-r--r--test/release/benchmark.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/benchmark.js b/test/benchmark.js
index 8c2e819c..74ac84be 100644
--- a/test/benchmark.js
+++ b/test/benchmark.js
@@ -10,7 +10,7 @@ var zlib = require("zlib");
var args = process.argv.slice(2);
if (!args.length) args.push("-mc");
args.unshift("bin/uglifyjs");
-args.push("--validate", "--timings");
+args.push("--timings");
var urls = [
"https://code.jquery.com/jquery-3.4.1.js",
"https://code.angularjs.org/1.7.8/angular.js",
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;
}));