Skip to content

Commit 9384a71

Browse files
committed
delete '-o' option in test script
1 parent 48382ac commit 9384a71

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tool/aci/check_gdl.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ files=$(get_target_files "$PWD")
119119

120120
# Iterate over the files
121121
for file in $files; do
122-
output=$(("$sparrow_godel_script" "$file" -p "$sparrow_lib_1_0" -o "${file%.*}_tmp.gdl") 2>&1)
122+
output=$(("$sparrow_godel_script" "$file" -p "$sparrow_lib_1_0" --semantic-only 2>&1)
123123
124124
# Check if the output is not empty
125125
if [ -n "$output" ]; then
@@ -130,9 +130,6 @@ for file in $files; do
130130
else
131131
echo "$file build successful"
132132
fi
133-
134-
# Remove temporary file
135-
rm -f "${file%.*}_tmp.gdl"
136133
done
137134
138135
exit 0

0 commit comments

Comments
 (0)