-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix chromedriver version to avoid url not found error
- Loading branch information
Showing
4 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
~/code/analyzer/goblint p_1_check.c -v &> out.log | ||
grep -e '\[Warning\]\[Assert\] Assertion "(int )global4 == 11" is unknown.' out.log >/dev/null 2>&1 | ||
if [ $? -neq 0 ]; then | ||
exit 5 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
for file in ../sv-benchmarks/c/Juliet_Test/CWE476_NULL_Pointer_Dereference---*_bad.i | ||
do | ||
./goblint -v --conf conf/svcomp23.json --sets ana.specification ../sv-benchmarks/c/properties/valid-memsafety.prp --sets exp.architecture 64bit $file >> results_bad.txt | ||
done | ||
|
||
for file in ../sv-benchmarks/c/Juliet_Test/CWE476_NULL_Pointer_Dereference---*_good.i | ||
do | ||
./goblint -v --conf conf/svcomp23.json --sets ana.specification ../sv-benchmarks/c/properties/valid-memsafety.prp --sets exp.architecture 64bit $file >> results_good.txt | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
echo 'Running script' | ||
i=0 | ||
while true | ||
do | ||
echo "try {$i}" | ||
#./goblint --enable gobview tests/regression/00-sanity/01-assert.c &> "analyzer.$(i).log" | ||
python3 scripts/test-gobview.py &> python.${i}.log | ||
if [ $? != 0 ] | ||
then echo "python script failed"; exit | ||
fi | ||
i=$(( $i + 1 )) | ||
done |