testsuite: Shorten multiline pattern message to the same for fail and pass
authorHans-Peter Nilsson <hp@axis.com>
Mon, 27 Feb 2023 19:00:25 +0000 (20:00 +0100)
committerHans-Peter Nilsson <hp@bitrange.com>
Tue, 28 Feb 2023 01:26:17 +0000 (02:26 +0100)
As recommended by testsuite maintainer: Regression analysis
works only if the string is the same.

testsuite:
* lib/multiline.exp (handle-multiline-outputs): Shorten
message to the same for fail and pass.

gcc/testsuite/lib/multiline.exp

index 5eccf2b..cfd928f 100644 (file)
@@ -169,9 +169,9 @@ proc handle-multiline-outputs { text } {
        # Use "regsub" to attempt to prune the pattern from $text
        if {[regsub -line $rexp $text "" text]} {
            # The multiline pattern was pruned.
-           ${maybe_x}pass "$title was found"
+           ${maybe_x}pass "$title"
        } else {
-           ${maybe_x}fail "$title not found"
+           ${maybe_x}fail "$title"
        }
 
        set index [expr $index + 1]