testsuite: Fix spello

'Patterns' has one 'r'.

	gcc/testsuite/
	* lib/options.exp: Fix spello
This commit is contained in:
Nathan Sidwell 2020-07-28 08:31:19 -07:00
parent 86cb35983f
commit 2ddae15e80
1 changed files with 2 additions and 2 deletions

View 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]} {