We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f4234a commit 30889c8Copy full SHA for 30889c8
scripts/run-goto-transcoder.sh
@@ -43,10 +43,17 @@ while IFS= read -r line; do
43
if echo "$contract" | grep -q "$unsupported_regex"; then
44
continue
45
fi
46
+ echo "$contract" >> _verified.txt
47
echo "Running: goto-transcoder $contract $contract_folder/$line $contract.esbmc.goto"
48
cargo run cbmc2esbmc $contract ../$contract_folder/$line $contract.esbmc.goto
49
./linux-release/bin/esbmc --binary $contract.esbmc.goto
50
done < "_contracts.txt"
51
-rm "_contracts.txt"
52
+echo "Entrypoints"
53
+cat _contracts.txt
54
+echo "Supported"
55
+cat _verified.txt
56
+
57
+rm _contracts.txt
58
+rm _verified.txt
59
cd ..
0 commit comments