Skip to content

Commit 007dffe

Browse files
Update run-goto-transcoder.sh
1 parent 30889c8 commit 007dffe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/run-goto-transcoder.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ if [ ! -d "goto-transcoder" ]; then
2828
cd ..
2929
fi
3030

31+
print "Contracts"
32+
ls $contract_folder | grep -v .symtab.out > ./goto-transcoder/_contracts.txt
33+
3134
ls $contract_folder | grep "$supported_regex" | grep -v .symtab.out > ./goto-transcoder/_contracts.txt
3235

3336
cd goto-transcoder
@@ -43,16 +46,13 @@ while IFS= read -r line; do
4346
if echo "$contract" | grep -q "$unsupported_regex"; then
4447
continue
4548
fi
46-
echo "$contract" >> _verified.txt
4749
echo "Running: goto-transcoder $contract $contract_folder/$line $contract.esbmc.goto"
4850
cargo run cbmc2esbmc $contract ../$contract_folder/$line $contract.esbmc.goto
4951
./linux-release/bin/esbmc --binary $contract.esbmc.goto
5052
done < "_contracts.txt"
5153

5254
echo "Entrypoints"
5355
cat _contracts.txt
54-
echo "Supported"
55-
cat _verified.txt
5656

5757
rm _contracts.txt
5858
rm _verified.txt

0 commit comments

Comments
 (0)