On Fri, Dec 14, 2012 at 10:13:47AM -0500, Jack Howarth wrote: > 2012-12-14 Jack Howarth <howa...@bromo.med.uc.edu> > > PR sanitizer/55679 > * g++.dg/asan/interception-test-1.C: Skip on darwin. > * lib/target-supports.exp (check_effective_target_swapcontext): Use > check_no_compiler_messages to test support in ucontext.h.
Ok with: > --- gcc/testsuite/lib/target-supports.exp (revision 194495) > +++ gcc/testsuite/lib/target-supports.exp (working copy) > @@ -736,7 +736,14 @@ proc check_effective_target_setrlimit {} > > # Return 1 if the target supports swapcontext, 0 otherwise. > proc check_effective_target_swapcontext {} { > - return [check_function_available "swapcontext"] > + return [check_no_compiler_messages swapcontext object { This should be executable instead of object. Jakub