[webkit-changes] cvs commit: WebKitTools/Scripts run-webkit-tests
Darin
darin at opensource.apple.com
Sun Sep 11 02:28:01 PDT 2005
darin 05/09/11 02:28:00
Modified: . ChangeLog
Scripts run-webkit-tests
Log:
* Scripts/run-webkit-tests: Oops. Use spaces, not tabs.
Revision Changes Path
1.98 +4 -0 WebKitTools/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebKitTools/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog 11 Sep 2005 09:23:53 -0000 1.97
+++ ChangeLog 11 Sep 2005 09:28:00 -0000 1.98
@@ -1,5 +1,9 @@
2005-09-11 Darin Adler <darin at apple.com>
+ * Scripts/run-webkit-tests: Oops. Use spaces, not tabs.
+
+2005-09-11 Darin Adler <darin at apple.com>
+
Reviewed by Eric.
* Scripts/run-webkit-tests: Sort tests with a new "pathcmp" function that's better in
1.24 +2 -2 WebKitTools/Scripts/run-webkit-tests
Index: run-webkit-tests
===================================================================
RCS file: /cvs/root/WebKitTools/Scripts/run-webkit-tests,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- run-webkit-tests 11 Sep 2005 09:23:53 -0000 1.23
+++ run-webkit-tests 11 Sep 2005 09:28:00 -0000 1.24
@@ -584,8 +584,8 @@
# Compare one chunk at a time.
# Each chunk is either all numeric digits, or all not numeric digits.
while (@a && @b) {
- my $a = shift @a;
- my $b = shift @b;
+ my $a = shift @a;
+ my $b = shift @b;
# Use numeric comparison if chunks are non-equal numbers.
return $a <=> $b if $a =~ /^\d/ && $b =~ /^\d/ && $a != $b;
More information about the webkit-changes
mailing list