Commit e4903eeb authored by aroben@apple.com's avatar aroben@apple.com

Small run-javascriptcore-tests cleanup

        Reviewed by Cameron Zwarich.

        * Scripts/run-javascriptcore-tests: Move the list of tests to skip
        into its own variable, annotated with the bugs that are filed about
        the various failures.

git-svn-id: svn://svn.chromium.org/blink/trunk@42492 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 9d5db852
2009-04-14 Adam Roben <aroben@apple.com>
Small run-javascriptcore-tests cleanup
Reviewed by Cameron Zwarich.
* Scripts/run-javascriptcore-tests: Move the list of tests to skip
into its own variable, annotated with the bugs that are filed about
the various failures.
2009-04-14 Adam Roben <aroben@apple.com>
Skip another sometimes-failing ecma/Date test on Windows
......
......@@ -40,7 +40,16 @@ use POSIX;
setConfiguration();
my $configuration = configuration();
my $jsDriverArgs = "-L ecma_3/Date/15.9.5.7.js ecma/Date/15.9.2.1.js ecma/Date/15.9.2.2-1.js ecma/Date/15.9.2.2-4.js";
my @testsToSkip = (
# Various ecma/Date tests sometimes fail on Windows (but not Mac) https://bugs.webkit.org/show_bug.cgi?id=25160
"ecma/Date/15.9.2.1.js",
"ecma/Date/15.9.2.2-1.js",
"ecma/Date/15.9.2.2-4.js",
# ecma_3/Date/15.9.5.7.js fails on Mac (but not Windows) https://bugs.webkit.org/show_bug.cgi?id=25161
"ecma_3/Date/15.9.5.7.js",
);
my $jsDriverArgs = "-L " . join(" ", @testsToSkip);
my $root; # intentionally left undefined
my $showHelp = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment