Changeset 98395 in webkit
- Timestamp:
- Oct 25, 2011, 2:16:39 PM (15 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/make-script-test-wrappers (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r98390 r98395 1 2011-10-25 Alexey Proskuryakov <ap@apple.com> 2 3 make-script-test-wrappers should not look outside fast/js 4 https://bugs.webkit.org/show_bug.cgi?id=66357 5 6 Reviewed by Maciej Stachowiak. 7 8 * Scripts/make-script-test-wrappers: Don't look for template files everywhere, only support 9 fast/js. 10 1 11 2011-10-25 Adam Barth <abarth@webkit.org> 2 12 -
trunk/Tools/Scripts/make-script-test-wrappers
r54033 r98395 49 49 50 50 if (!$result || $showHelp) { 51 print STDERR basename($0) . " [-h|--help] [path ...]\n";51 print STDERR basename($0) . " [-h|--help]\n"; 52 52 exit 1; 53 53 } … … 125 125 126 126 sub findTemplateFiles(@) { 127 my @args = @_;128 127 my @templateFiles; 129 130 push @args, "LayoutTests" if scalar(@args) == 0;131 132 my @paths = map { -f $_ ? dirname($_) : $_ } @args;133 128 134 129 my $fileFilter = sub { … … 136 131 }; 137 132 138 find({ preprocess => \&directoryFilter, wanted => $fileFilter }, @paths);133 find({ preprocess => \&directoryFilter, wanted => $fileFilter }, "LayoutTests/fast/js"); 139 134 140 135 return @templateFiles;
Note:
See TracChangeset
for help on using the changeset viewer.