summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtcwg_bmk-build.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/tcwg_bmk-build.sh b/tcwg_bmk-build.sh
index f2f76a1a..58e7aba4 100755
--- a/tcwg_bmk-build.sh
+++ b/tcwg_bmk-build.sh
@@ -466,15 +466,18 @@ compare_results ()
esac
# Skip processing time metric if md5sums match.
- # If either md5sum is -1, then it indicates that we don't have checksum
- # computed correctly for this symbol, and thus continue with comparison.
+ # If either md5sum is -1 or "d41d8...", then it indicates that
+ # we don't have checksum computed correctly for this symbol,
+ # and thus continue with comparison.
if [ x"$md5sum1" == x"$md5sum2" ] \
&& [ x"$md5sum1" != x"-1" ] \
+ && [ x"$md5sum1" != x"d41d8cd98f00b204e9800998ecf8427e" ] \
&& [ x"$metric_id" == x"time" ] \
&& [ "$metric" != "n/a" ]; then
if (( $metric != 0 )); then
echo "warning: Samples differ for $symbol having same md5sums: $time1, $time2"
fi
+ echo "SKIPPING $bmk:$symbol because md5sums match" >> $run_step_artifacts/skipped-symbols.txt
# TODO: Fix md5sum processing.
#continue
fi