Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions scripts/run-goto-transcoder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ supported_regex=$2
unsupported_regex=neg

goto_transcoder_git=https://github.com/esbmc/goto-transcoder
esbmc_url=https://github.com/esbmc/esbmc/releases/download/nightly-39b012f9f7f7dad188708a9eaf4bbbc5faa3b4f7/esbmc-linux.zip
esbmc_url=https://github.com/esbmc/esbmc/releases/download/v7.10/esbmc-linux.zip

##########
# SCRIPT #
Expand All @@ -24,7 +24,7 @@ if [ ! -d "goto-transcoder" ]; then
cd goto-transcoder
wget $esbmc_url
unzip esbmc-linux.zip
chmod +x ./linux-release/bin/esbmc
chmod +x ./bin/esbmc
cd ..
fi

Expand All @@ -45,7 +45,7 @@ while IFS= read -r line; do
fi
echo "Running: goto-transcoder $contract $contract_folder/$line $contract.esbmc.goto"
cargo run cbmc2esbmc ../$contract_folder/$line $contract.esbmc.goto
./linux-release/bin/esbmc --cprover --function $contract --binary resources/library.goto $contract.esbmc.goto
./bin/esbmc --cprover --function $contract --binary resources/library.goto $contract.esbmc.goto
done < "_contracts.txt"

rm "_contracts.txt"
Expand Down
Loading