Skip to content

Commit 25c577d

Browse files
committed
debug
1 parent c484c1f commit 25c577d

File tree

9 files changed

+9
-1
lines changed

9 files changed

+9
-1
lines changed

scripts/variations/cache+lockfile+node_modules.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ source "$1/variations/common.sh"
88
# When running a cache benchmark, we want to clean up only the node_modules
99
# directory and the lockfiles between each run.
1010
hyperfine --ignore-failure \
11+
--show-output \
1112
--time-unit=millisecond \
1213
--export-json="$BENCH_OUTPUT_FOLDER/benchmarks.json" \
1314
--warmup="$BENCH_WARMUP" \

scripts/variations/cache+lockfile.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ source "$1/variations/common.sh"
88
# When running a cache benchmark, we want to clean up only the node_modules
99
# directory and the lockfiles between each run.
1010
hyperfine --ignore-failure \
11+
--show-output \
1112
--time-unit=millisecond \
1213
--export-json="$BENCH_OUTPUT_FOLDER/benchmarks.json" \
1314
--warmup="$BENCH_WARMUP" \

scripts/variations/cache+node_modules.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ source "$1/variations/common.sh"
88
# When running a cache benchmark, we want to clean up only the node_modules
99
# directory and the lockfiles between each run.
1010
hyperfine --ignore-failure \
11+
--show-output \
1112
--time-unit=millisecond \
1213
--export-json="$BENCH_OUTPUT_FOLDER/benchmarks.json" \
1314
--warmup="$BENCH_WARMUP" \

scripts/variations/cache.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ source "$1/variations/common.sh"
77
# Run the benchmark suite
88
# When running a cache benchmark, we want to clean up only the node_modules
99
# directory and the lockfiles between each run.
10-
echo "Hyperfine version: $(hyperfine --version)"
1110
hyperfine --ignore-failure \
11+
--show-output \
1212
--time-unit=millisecond \
1313
--export-json="$BENCH_OUTPUT_FOLDER/benchmarks.json" \
1414
--warmup="$BENCH_WARMUP" \

scripts/variations/clean.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ source "$1/variations/common.sh"
99
# between each run using the clean-helper.sh script.
1010
echo "Hyperfine version: $(hyperfine --version)"
1111
hyperfine --ignore-failure \
12+
--show-output \
1213
--time-unit=millisecond \
1314
--export-json="$BENCH_OUTPUT_FOLDER/benchmarks.json" \
1415
--warmup="$BENCH_WARMUP" \

scripts/variations/lockfile+node_modules.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ source "$1/variations/common.sh"
88
# When running a cache benchmark, we want to clean up only the node_modules
99
# directory and the lockfiles between each run.
1010
hyperfine --ignore-failure \
11+
--show-output \
1112
--time-unit=millisecond \
1213
--export-json="$BENCH_OUTPUT_FOLDER/benchmarks.json" \
1314
--warmup="$BENCH_WARMUP" \

scripts/variations/lockfile.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ source "$1/variations/common.sh"
88
# When running a cache benchmark, we want to clean up only the node_modules
99
# directory and the lockfiles between each run.
1010
hyperfine --ignore-failure \
11+
--show-output \
1112
--time-unit=millisecond \
1213
--export-json="$BENCH_OUTPUT_FOLDER/benchmarks.json" \
1314
--warmup="$BENCH_WARMUP" \

scripts/variations/node_modules.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ source "$1/variations/common.sh"
88
# When running a cache benchmark, we want to clean up only the node_modules
99
# directory and the lockfiles between each run.
1010
hyperfine --ignore-failure \
11+
--show-output \
1112
--time-unit=millisecond \
1213
--export-json="$BENCH_OUTPUT_FOLDER/benchmarks.json" \
1314
--warmup="$BENCH_WARMUP" \

scripts/variations/run.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ BENCH_COMMAND_NODE="node --run test > $BENCH_OUTPUT_FOLDER/node-run-output-\${HY
3535
# The install step is defined as a "prepare" option so that time spent
3636
# on the install is not accounted for in the benchmark results.
3737
hyperfine --ignore-failure \
38+
--show-output \
3839
--time-unit=millisecond \
3940
--export-json="$BENCH_OUTPUT_FOLDER/benchmarks.json" \
4041
--warmup="$BENCH_WARMUP" \

0 commit comments

Comments
 (0)