diff options
author | Nathan Sidwell <nathan@acm.org> | 2020-07-28 08:31:19 -0700 |
---|---|---|
committer | Nathan Sidwell <nathan@acm.org> | 2020-07-28 09:01:31 -0700 |
commit | 2ddae15e808a41216d5e7a97db8ae69bb7b77464 (patch) | |
tree | 4ac182df05c490e9a447b659e841ab4f66af33a5 /gcc/testsuite | |
parent | 86cb35983f55d6039b99b82ace30d2730fcb1eb1 (diff) | |
download | gcc-2ddae15e808a41216d5e7a97db8ae69bb7b77464.zip gcc-2ddae15e808a41216d5e7a97db8ae69bb7b77464.tar.gz gcc-2ddae15e808a41216d5e7a97db8ae69bb7b77464.tar.bz2 |
testsuite: Fix spello
'Patterns' has one 'r'.
gcc/testsuite/
* lib/options.exp: Fix spello
Diffstat (limited to 'gcc/testsuite')
-rw-r--r-- | gcc/testsuite/lib/options.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/lib/options.exp b/gcc/testsuite/lib/options.exp index 44ea510..c7f7316 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]} { |