From 2ddae15e808a41216d5e7a97db8ae69bb7b77464 Mon Sep 17 00:00:00 2001 From: Nathan Sidwell Date: Tue, 28 Jul 2020 08:31:19 -0700 Subject: [PATCH] testsuite: Fix spello 'Patterns' has one 'r'. gcc/testsuite/ * lib/options.exp: Fix spello --- gcc/testsuite/lib/options.exp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/testsuite/lib/options.exp b/gcc/testsuite/lib/options.exp index 44ea51075bc5..c7f7316943e4 100644 --- a/gcc/testsuite/lib/options.exp +++ b/gcc/testsuite/lib/options.exp @@ -74,7 +74,7 @@ proc check_for_options_with_filter { language gcc_options exclude \ } } - # Verify that COMPILER_PATTERRNS appear in gcc output. + # Verify that COMPILER_PATTERNS appear in gcc output. foreach pattern [split $compiler_patterns "\n"] { if {$pattern != ""} { if {[regexp -line -- "$pattern" $gcc_output]} { @@ -89,7 +89,7 @@ proc check_for_options_with_filter { language gcc_options exclude \ } } - # Verify that COMPILER_NON_PATTERRNS do not appear in gcc output. + # Verify that COMPILER_NON_PATTERNS do not appear in gcc output. foreach pattern [split $compiler_non_patterns "\n"] { if {$pattern != ""} { if {![regexp -line -- "$pattern" $gcc_output result]} { -- 2.47.3