testsuite: Fix spello
authorNathan Sidwell <nathan@acm.org>
Tue, 28 Jul 2020 15:31:19 +0000 (08:31 -0700)
committerNathan Sidwell <nathan@acm.org>
Tue, 28 Jul 2020 16:01:31 +0000 (09:01 -0700)
'Patterns' has one 'r'.

gcc/testsuite/
* lib/options.exp: Fix spello

gcc/testsuite/lib/options.exp

index 44ea510..c7f7316 100644 (file)
@@ -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]} {