diff options
author | Oz Linden <oz@lindenlab.com> | 2011-09-13 10:51:31 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2011-09-13 10:51:31 -0400 |
commit | 0665d3f2e65b75db55134b5ad3fc1c8182b05f9e (patch) | |
tree | b8b322d7b7613b9a18539430184e4f13f7192131 /scripts | |
parent | 5b42f6f25b9b8fa4bc3ccfe37069a447f89c6327 (diff) |
lowercase gpu string and recognizers in gpu_table_tester to match the behavior of the real code
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/gpu_table_tester | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/scripts/gpu_table_tester b/scripts/gpu_table_tester index 2ad7ffc01e..4edf649994 100755 --- a/scripts/gpu_table_tester +++ b/scripts/gpu_table_tester @@ -126,8 +126,7 @@ while (<GPUS>) if ($errsOnLine == $ErrorsSeen) # no errors found on this line { - $lcregex = $regex; # the real gpu table parser lowercases each recognizer - push @InOrder,$lcregex; + push @InOrder,$regex; $NameLine{$name} = $INPUT_LINE_NUMBER; $RecognizerLine{$regex} = $INPUT_LINE_NUMBER; $Name{$regex} = $name; @@ -148,13 +147,13 @@ my %RecognizedBy; while (<>) # Loop over input lines { chomp; - my $lowerInput = $_; - lc lowerInput; # the real gpu table parser lowercases the input string + my $lcInput = lc $_; # the real gpu table parser lowercases the input string my $recognizer; $RecognizedBy{$_} = 'UNRECOGNIZED'; foreach $recognizer ( @InOrder ) # note early exit if recognized { - if ( m/$recognizer/ ) + my $lcRecognizer = lc $recognizer; # the real gpu table parser lowercases the recognizer + if ( $lcInput =~ m/$lcRecognizer/ ) { $RecognizedBy{$_} = $recognizer; last; # exit recognizer loop |