We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9140a76 commit 92484aaCopy full SHA for 92484aa
regression/run-datastax.sh
@@ -0,0 +1,13 @@
1
+#!/bin/bash
2
+test_cases=`find cbmc-java/datastax/ -name *.desc -exec dirname {} \;`
3
+./test.pl -c $1 ${test_cases}
4
+
5
+count=0
6
+for test_case in ${test_cases}; do
7
+ out_file=`find ${test_case} -name '*.out'`
8
+ if grep -q "identifier.*not found" ${out_file}; then
9
+ echo ${out_file}
10
+ count=$((${count}+1))
11
+ fi
12
+done;
13
+echo "Missing symbols: ${count}"
regression/test.pl
@@ -107,7 +107,7 @@ ($$$$$)
107
my $r;
108
$result =~ s/\\/\\\\/g;
109
$result =~ s/([^\\])\$/$1\\r\\\\?\$/;
110
- system("bash", "-c", "grep \$'$result' '$name/$output' >/dev/null");
+ system("bash", "-c", "grep \$'$result' \"$name/$output\" >/dev/null");
111
$r = ($included ? $? != 0 : $? == 0);
112
if($r) {
113
print LOG "$result [FAILED]\n";
0 commit comments