sim prune_warnings
authorAlan Modra <amodra@gmail.com>
Mon, 14 Aug 2023 02:31:44 +0000 (12:01 +0930)
committerAlan Modra <amodra@gmail.com>
Sat, 19 Aug 2023 03:11:32 +0000 (12:41 +0930)
Remove some of the warnings generated by newer versions of ld.

* testsuite/lib/sim-defs.exp (prune_warnings_extra): New.
Arrange to run it from prune_warnings.

sim/testsuite/lib/sim-defs.exp

index 5528d64684b3cdc0573572b2b69bb16c57c3a9e4..54860f2ea51fbe7762b3972e07d19bf459b71c6f 100644 (file)
@@ -651,3 +651,22 @@ proc slurp_options { file } {
     close $f
     return $opt_array
 }
+
+proc prune_warnings_extra { text } {
+
+    regsub -all "(^|\n)(\[^\n\]*: warning:\[^\n\]*missing \\.note\\.GNU-stack section\[^\n\]*\n?)+" $text "\\1" text
+    regsub -all "(^|\n)(\[^\n\]*: NOTE: This behaviour is deprecated\[^\n\]*\n?)+" $text "\\1" text
+
+    regsub -all "(^|\n)(\[^\n\]*: warning:\[^\n\]*has a LOAD segment with RWX permissions\[^\n\]*\n?)+" $text "\\1" text
+
+    return $text
+}
+
+if { [info procs saved-prune_warnings] == [list] } {
+    rename prune_warnings saved-prune_warnings
+    proc prune_warnings { text } {
+       set text [saved-prune_warnings $text]
+       set text [prune_warnings_extra $text]
+       return $text
+    }
+}