From: Sadoon Albader Date: Tue, 3 Oct 2023 18:29:38 +0000 (+0300) Subject: fixed another serious bug, C should output to CSV X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9ef9c2e1071ca04e53474b8b5f335e481eebcbf3;p=openpower-isa.git fixed another serious bug, C should output to CSV --- diff --git a/crypto/poly1305/test.sh b/crypto/poly1305/test.sh index f9821e3e..4216278d 100755 --- a/crypto/poly1305/test.sh +++ b/crypto/poly1305/test.sh @@ -1,3 +1,7 @@ #!/bin/bash make -while true; do ./poly1305-rand-test && python3 poly1305-donna-test.py; done +while true +do + ./poly1305-rand-test > rand.csv + python3 poly1305-donna-test.py +done