From 152a10344c098c1f227fd339c75dea941aa728b0 Mon Sep 17 00:00:00 2001 From: Tamo Date: Wed, 13 Apr 2022 15:24:54 +0200 Subject: [PATCH] Get rid of the threshold when comparing benchmarks It just hide things --- benchmarks/scripts/compare.sh | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/benchmarks/scripts/compare.sh b/benchmarks/scripts/compare.sh index 84d1dc0e6..ff49144f3 100755 --- a/benchmarks/scripts/compare.sh +++ b/benchmarks/scripts/compare.sh @@ -35,10 +35,4 @@ done path_list=$(echo " $@" | sed 's/ / \/tmp\//g') -if [[ ${#@} -gt 1 ]]; then - # Print the diff changes between the old and new benchmarks - # by only displaying the lines that have a diff of more than 5%. - critcmp --threshold 5 $path_list -else - critcmp $path_list -fi +critcmp $path_list