aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-03-27 23:50:40 +0000
committerJeff Law <law@gcc.gnu.org>1999-03-27 16:50:40 -0700
commit557ca192c5aeb9f98895ca093f430759c896038a (patch)
tree40bb0b690d2878bf89712fdb15cfb0200ca7affe
parent87b8bec574e24e2029906aa3952bbc3d57061606 (diff)
downloadgcc-557ca192c5aeb9f98895ca093f430759c896038a.zip
gcc-557ca192c5aeb9f98895ca093f430759c896038a.tar.gz
gcc-557ca192c5aeb9f98895ca093f430759c896038a.tar.bz2
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
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/lib/objc-torture.exp8
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index ade3278..8ea3801 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 5eadd48..a3cc7d6 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"