File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,9 @@ if [ ! -d "goto-transcoder" ]; then
28
28
cd ..
29
29
fi
30
30
31
+ print " Contracts"
32
+ ls $contract_folder | grep -v .symtab.out > ./goto-transcoder/_contracts.txt
33
+
31
34
ls $contract_folder | grep " $supported_regex " | grep -v .symtab.out > ./goto-transcoder/_contracts.txt
32
35
33
36
cd goto-transcoder
@@ -43,16 +46,13 @@ while IFS= read -r line; do
43
46
if echo " $contract " | grep -q " $unsupported_regex " ; then
44
47
continue
45
48
fi
46
- echo " $contract " >> _verified.txt
47
49
echo " Running: goto-transcoder $contract $contract_folder /$line $contract .esbmc.goto"
48
50
cargo run cbmc2esbmc $contract ../$contract_folder /$line $contract .esbmc.goto
49
51
./linux-release/bin/esbmc --binary $contract .esbmc.goto
50
52
done < " _contracts.txt"
51
53
52
54
echo " Entrypoints"
53
55
cat _contracts.txt
54
- echo " Supported"
55
- cat _verified.txt
56
56
57
57
rm _contracts.txt
58
58
rm _verified.txt
You can’t perform that action at this time.
0 commit comments