File tree 2 files changed +15
-2
lines changed
2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,16 @@ node_modules: package-lock.json
18
18
build_rt : node_modules
19
19
cd ../Runtime && npm run build
20
20
21
- .PHONY : benchmark
22
- benchmark : build_rt dist/BenchmarkTests.wasm
21
+ .PHONY : benchmark_setup
22
+ benchmark_setup : build_rt dist/BenchmarkTests.wasm
23
+
24
+ .PHONY : run_benchmark
25
+ run_benchmark :
23
26
node bin/benchmark-tests.js
24
27
28
+ .PHONY : benchmark
29
+ benchmark : benchmark_setup run_benchmark
30
+
25
31
.PHONY : test
26
32
test : build_rt dist/PrimaryTests.wasm
27
33
node bin/primary-tests.js
Original file line number Diff line number Diff line change 15
15
CONFIGURATION=debug make test && \
16
16
CONFIGURATION=release make test
17
17
18
+ .PHONY : benchmark_setup
19
+ benchmark_setup :
20
+ cd IntegrationTests && make benchmark_setup
21
+
22
+ .PHONY : run_benchmark
23
+ run_benchmark :
24
+ cd IntegrationTests && make -s run_benchmark
You can’t perform that action at this time.
0 commit comments