From 557ca192c5aeb9f98895ca093f430759c896038a Mon Sep 17 00:00:00 2001 From: Jeffrey A Law Date: Sat, 27 Mar 1999 23:50:40 +0000 Subject: [PATCH] objc-torture.exp: Replace "77" with "Obj-C" in pattern matching strings. * lib/objc-torture.exp: Replace "77" with "Obj-C" in pattern matching strings. From-SVN: r26030 --- gcc/testsuite/ChangeLog | 5 +++++ gcc/testsuite/lib/objc-torture.exp | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index ade3278bf5a..8ea3801d776 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +Sun Mar 28 00:49:41 1999 Jeffrey A Law (law@cygnus.com) + + * lib/objc-torture.exp: Replace "77" with "Obj-C" in pattern + matching strings. + Fri Mar 26 00:50:46 1999 Jeffrey A Law (law@cygnus.com) * gcc.c-torture/execute/990326-1.c: New test from Charles Hannum. diff --git a/gcc/testsuite/lib/objc-torture.exp b/gcc/testsuite/lib/objc-torture.exp index 5eadd489c47..a3cc7d6fe9f 100644 --- a/gcc/testsuite/lib/objc-torture.exp +++ b/gcc/testsuite/lib/objc-torture.exp @@ -70,7 +70,7 @@ proc objc-torture-compile { src option } { set comp_output [objc_target_compile "$src" "$output" object $options]; # Set a few common compiler messages. - set fatal_signal "*77*: Internal compiler error: program*got fatal signal" + set fatal_signal "*Obj-C*: Internal compiler error: program*got fatal signal" if [string match "$fatal_signal 6" $comp_output] then { objc_fail $testcase "Got Signal 6, $option" @@ -85,7 +85,7 @@ proc objc-torture-compile { src option } { } # We shouldn't get these because of -w, but just in case. - if [string match "*77*:*warning:*" $comp_output] then { + if [string match "*Obj-C*:*warning:*" $comp_output] then { warning "$testcase: (with warnings) $option" send_log "$comp_output\n" unresolved "$testcase, $option" @@ -173,7 +173,7 @@ proc objc-torture-execute { src } { set comp_output [objc_target_compile "$src" "$executable" executable $options]; # Set a few common compiler messages. - set fatal_signal "*77*: Internal compiler error: program*got fatal signal" + set fatal_signal "*Obj-C*: Internal compiler error: program*got fatal signal" if [string match "$fatal_signal 6" $comp_output] then { objc_fail $testcase "Got Signal 6, $option" @@ -188,7 +188,7 @@ proc objc-torture-execute { src } { } # We shouldn't get these because of -w, but just in case. - if [string match "*77*:*warning:*" $comp_output] then { + if [string match "*Obj-C*:*warning:*" $comp_output] then { warning "$testcase: (with warnings) $option" send_log "$comp_output\n" unresolved "$testcase, $option"