+2006-03-03 Eric Seidel <eseidel@apple.com>
+
+ Reviewed by hyatt.
+
+ A few more fixes to make run-webkit-tests really work on win32.
+
+ * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp:
+ (localFileTest):
+ * Scripts/run-webkit-tests:
+
2006-03-03 Eric Seidel <eseidel@apple.com>
Reviewed by darin.
}
my $findArguments = "$prunePart -or $extensionPart";
-my $findOrderArg = isCygwin() ? "" : "-s";
my $foundTestName = 0;
for my $test (@ARGV) {
next if $test =~ /^-/;
push @tests, $test;
}
} elsif (-d "$testDirectory/$test") {
- push @tests, sort pathcmp map { chomp; s-^$testDirectory/--; $_; } `find -L $findOrderArg "$testDirectory/$test" $findArguments`;
+ push @tests, sort pathcmp map { chomp; s-^$testDirectory/--; $_; } `find -L "$testDirectory/$test" $findArguments`;
} else {
print "test $test not found\n";
}
}
if (!$foundTestName) {
- @tests = sort pathcmp map { chomp; s-^$testDirectory/--; $_; } `find -Ls $testDirectory $findArguments`;
+ @tests = sort pathcmp map { chomp; s-^$testDirectory/--; $_; } `find -L "$testDirectory" $findArguments`;
}
die "no tests to run\n" if !@tests;