chore: update TODO, remove unused code

Co-Authored-By: Anja Rabich <a.rabich@uni-luebeck.de>
This commit is contained in:
Benjamin Lipp
2025-05-06 17:28:25 +02:00
parent 73b04cdc12
commit eb64f50d99
2 changed files with 1 additions and 25 deletions

View File

@@ -14,30 +14,6 @@ run_proverif() {
clean_warnings() {
exc rosenpass-marzipan clean-warnings
: <<'END_COMMENT'
awk '
BEGIN {
null = "0455290a-50d5-4f28-8008-3d69605c2835"
p = null;
}
function pt(arg) {
if (arg != null) {
print(arg);
}
}
function bod() {
if ($0 !~ /^Warning: identifier \w+ rebound.$/) {
pt(p);
p=$0;
} else {
p=null;
}
}
{ bod(); }
END { $0=null; bod(); }
'
END_COMMENT
}
color_red='\033[0;31m'