From f3761d13094b721e28c84744eeed1f720f17f70f Mon Sep 17 00:00:00 2001
From: Rick Carback <rick@privategrity.com>
Date: Sun, 29 Apr 2018 18:02:04 +0000
Subject: [PATCH] Add a hack to work around ratcheting warnings

---
 basice2e/run.sh | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/basice2e/run.sh b/basice2e/run.sh
index cedccc7..016741c 100755
--- a/basice2e/run.sh
+++ b/basice2e/run.sh
@@ -111,6 +111,13 @@ runclients
 echo "RUNNING CLIENTS (2nd time)..."
 runclients
 
+# HACK HACK HACK: Remove the ratchet warning from client output
+for F in $(find results/clients -type f)
+do
+    cat $F | grep -v "[Rr]atcheting" > $F.tmp
+    mv $F.tmp $F
+done
+
 
 diff -ruN clients.goldoutput $CLIENTOUT
 cat $SERVERLOGS/*.log | grep "ERROR" > results/server-errors.txt || true
-- 
GitLab