Skip to content

Commit

Permalink
delete '-o' option in test script
Browse files Browse the repository at this point in the history
  • Loading branch information
ValKmjolnir committed Aug 23, 2024
1 parent 48382ac commit 9384a71
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tool/aci/check_gdl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ files=$(get_target_files "$PWD")

# Iterate over the files
for file in $files; do
output=$(("$sparrow_godel_script" "$file" -p "$sparrow_lib_1_0" -o "${file%.*}_tmp.gdl") 2>&1)
output=$(("$sparrow_godel_script" "$file" -p "$sparrow_lib_1_0" --semantic-only 2>&1)
# Check if the output is not empty
if [ -n "$output" ]; then
Expand All @@ -130,9 +130,6 @@ for file in $files; do
else
echo "$file build successful"
fi
# Remove temporary file
rm -f "${file%.*}_tmp.gdl"
done
exit 0

0 comments on commit 9384a71

Please sign in to comment.