Commit 4d17b2f6 by Jakub Jelinek Committed by Jakub Jelinek

guality.exp: Only run guality tests if a trivial testcase using guality.h compiles and links...

	* gcc.dg/guality/guality.exp: Only run guality tests if a trivial
	testcase using guality.h compiles and links and if a global variable
	can be verified by gdb.

From-SVN: r151410
parent ca96ed43
2009-09-03 Jakub Jelinek <jakub@redhat.com>
* gcc.dg/guality/guality.exp: Only run guality tests if a trivial
testcase using guality.h compiles and links and if a global variable
can be verified by gdb.
2009-09-03 Bernd Schmidt <bernd.schmidt@analog.com>
* lib/target-supports.exp (check_effective_target_sync_int_long):
......
......@@ -2,6 +2,30 @@
load_lib gcc-dg.exp
proc check_guality {args} {
set result [eval check_compile guality_check executable $args "-g -O0"]
set lines [lindex $result 0]
set output [lindex $result 1]
set ret 0
if {[string match "" $lines]} {
set execout [gcc_load "./$output"]
set ret [string match "*1 PASS, 0 FAIL, 0 UNRESOLVED*" $execout]
}
remote_file build delete $output
return $ret
}
dg-init
gcc-dg-runtest [lsort [glob $srcdir/$subdir/*.c]] ""
if {[check_guality "
#include \"$srcdir/$subdir/guality.h\"
volatile long int varl = 6;
int main (int argc, char *argv\[\])
{
GUALCHKVAL (varl);
return 0;
}
"]} {
gcc-dg-runtest [lsort [glob $srcdir/$subdir/*.c]] ""
}
dg-finish
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment