git-subtree-dir: third_party/libosmium git-subtree-split: ce865381fb752323ff1e66181f5a49b7f500ffa3
16 lines
219 B
Bash
Executable File
16 lines
219 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# run_benchmarks.sh
|
|
#
|
|
# Run all benchmarks.
|
|
#
|
|
|
|
set -e
|
|
|
|
for benchmark in @CMAKE_BINARY_DIR@/benchmarks/run_benchmark_*.sh; do
|
|
name=`basename $benchmark`
|
|
echo "Running $name..."
|
|
$benchmark
|
|
done
|
|
|