aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks
diff options
context:
space:
mode:
authorMichalis Pardalos <m.pardalos@gmail.com>2021-08-24 13:35:32 +0100
committerMichalis Pardalos <m.pardalos@gmail.com>2021-08-24 13:35:32 +0100
commit6c672aa7da06264c4d966b870c7b63a0256348d6 (patch)
treeb4a97c938382d771a19acffa2ce480e24d130c63 /benchmarks
parent182b29c0db3c408f7bd7360af90e5b360d63222d (diff)
downloadvericert-6c672aa7da06264c4d966b870c7b63a0256348d6.tar.gz
vericert-6c672aa7da06264c4d966b870c7b63a0256348d6.zip
Remove -Werror from benchmark runner
Diffstat (limited to 'benchmarks')
-rwxr-xr-xbenchmarks/run-vericert.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/run-vericert.sh b/benchmarks/run-vericert.sh
index 66bc15f..844e9e0 100755
--- a/benchmarks/run-vericert.sh
+++ b/benchmarks/run-vericert.sh
@@ -21,7 +21,7 @@ function run_benchmark() {
[ -f "$benchmark.c" ] || { error "$benchmark.c does not exist"; return; }
info "[$benchmark] Running"
- clang -Wall -Werror -fsanitize=undefined "$benchmark".c -o "$benchmark".o
+ clang -Wall -fsanitize=undefined "$benchmark".c -o "$benchmark".o
./"$benchmark".o > "$benchmark".clog
cresult=$(cut -d' ' -f2 "$benchmark.clog")
info "[$benchmark] C output: $cresult"