Skip to content
Snippets Groups Projects
Commit f3761d13 authored by Rick Carback's avatar Rick Carback
Browse files

Add a hack to work around ratcheting warnings

parent 8183928e
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment