objc-torture.exp: Replace "77" with "Obj-C" in pattern matching strings.
authorJeffrey A Law <law@cygnus.com>
Sat, 27 Mar 1999 23:50:40 +0000 (23:50 +0000)
committerJeff Law <law@gcc.gnu.org>
Sat, 27 Mar 1999 23:50:40 +0000 (16:50 -0700)
        * lib/objc-torture.exp: Replace "77" with "Obj-C" in pattern
        matching strings.

From-SVN: r26030

gcc/testsuite/ChangeLog
gcc/testsuite/lib/objc-torture.exp

index ade3278bf5a7014fcda26a5c190914bc3f5dd252..8ea3801d776428dbc6eea45242682e572121a071 100644 (file)
@@ -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.
index 5eadd489c47f143a5f78aa6930cfb243eb12b413..a3cc7d6fe9fbd1235719d14e30cf9023cc6eb3fd 100644 (file)
@@ -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"