Skip to content

Commit 30889c8

Browse files
Update run-goto-transcoder.sh
1 parent 3f4234a commit 30889c8

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

scripts/run-goto-transcoder.sh

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,17 @@ while IFS= read -r line; do
4343
if echo "$contract" | grep -q "$unsupported_regex"; then
4444
continue
4545
fi
46+
echo "$contract" >> _verified.txt
4647
echo "Running: goto-transcoder $contract $contract_folder/$line $contract.esbmc.goto"
4748
cargo run cbmc2esbmc $contract ../$contract_folder/$line $contract.esbmc.goto
4849
./linux-release/bin/esbmc --binary $contract.esbmc.goto
4950
done < "_contracts.txt"
5051

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
5259
cd ..

0 commit comments

Comments
 (0)