From 662d624ba439792e409857c81a62bc3cce898b73 Mon Sep 17 00:00:00 2001 From: Stephen Bates Date: Fri, 20 Feb 2015 14:07:23 -0700 Subject: [PATCH] Fix for latency test Added a -f so we don't barf if the OUTPUT file is missing. --- scripts/latency | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/latency b/scripts/latency index 17835de8..c8e975fc 100755 --- a/scripts/latency +++ b/scripts/latency @@ -75,7 +75,7 @@ function run_test { fi } -rm ${OUTPUT} > /dev/null || exit -1 +rm -f ${OUTPUT} > /dev/null || exit -1 make clean > /dev/null || exit -1 make install > /dev/null || exit -1 -- 2.50.1