Changeset 52876 in webkit


Ignore:
Timestamp:
Jan 6, 2010 3:56:15 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-06 Eric Seidel <eric@webkit.org>

Unreviewed. Rolling out r52869 and r52853 due to bot
and local run-webkit-test failures

REGRESSION(52854?) fast/workers/shared-worker-constructor.html failed on Leopard Build Bot
https://bugs.webkit.org/show_bug.cgi?id=33256

The original bug was https://bugs.webkit.org/show_bug.cgi?id=33153

  • Scripts/run-webkit-tests:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r52873 r52876  
     12010-01-06  Eric Seidel  <eric@webkit.org>
     2
     3        Unreviewed.  Rolling out r52869 and r52853 due to bot
     4        and local run-webkit-test failures
     5
     6        REGRESSION(52854?) fast/workers/shared-worker-constructor.html failed on Leopard Build Bot
     7        https://bugs.webkit.org/show_bug.cgi?id=33256
     8
     9        The original bug was https://bugs.webkit.org/show_bug.cgi?id=33153
     10
     11        * Scripts/run-webkit-tests:
     12
    1132010-01-06  Eric Seidel  <eric@webkit.org>
    214
  • trunk/WebKitTools/Scripts/run-webkit-tests

    r52869 r52876  
    144144my $testHTTP = 1;
    145145my $testMedia = 1;
    146 my $testResultsDirectory = catfile(File::Spec->tmpdir(), "layout-test-results");
    147 my $layoutTestsSymLink = catfile(File::Spec->tmpdir(), "LayoutTests");
    148 my $httpdPidDir = catfile(File::Spec->tmpdir(), "WebKit");
    149 my $httpdPidFile = catfile($httpdPidDir, "httpd.pid");
     146my $testResultsDirectory = "/tmp/layout-test-results";
    150147my $testsPerDumpTool = 1000;
    151148my $threaded = 0;
     
    405402}
    406403
    407 system "ln", "-s", $testDirectory, $layoutTestsSymLink unless -x $layoutTestsSymLink;
     404system "ln", "-s", $testDirectory, "/tmp/LayoutTests" unless -x "/tmp/LayoutTests";
    408405
    409406my %ignoredFiles = ( "results.html" => 1 );
     
    13531350    return if $isHttpdOpen;
    13541351
    1355     mkdir $httpdPidDir;
     1352    mkdir "/tmp/WebKit";
    13561353   
    1357     if (-f $httpdPidFile) {
    1358         my $oldPid = `cat "$httpdPidFile"`;
     1354    if (-f "/tmp/WebKit/httpd.pid") {
     1355        my $oldPid = `cat /tmp/WebKit/httpd.pid`;
    13591356        chomp $oldPid;
    13601357        if (0 != kill 0, $oldPid) {
     
    14351432    close HTTPDOUT;
    14361433
    1437     if (! -f $httpdPidFile) {
    1438         $isHttpdOpen = 0;
    1439         rmdir $httpdPidDir;
    1440         return;
    1441     }
    1442 
    1443     my $httpdPid = `cat "$httpdPidFile"`;
    1444     kill 15, $httpdPid;
    1445     my $retryCount = 20;
    1446     while ((0 != kill 0, $httpdPid) && $retryCount) {
    1447         sleep 1;
    1448         --$retryCount;
    1449     }
    1450 
    1451     print STDERR "Timed out waiting for httpd to terminate!\n" unless $retryCount;
    1452     rmdir $httpdPidDir;
     1434    kill 15, `cat /tmp/WebKit/httpd.pid` if -f "/tmp/WebKit/httpd.pid";
    14531435
    14541436    $isHttpdOpen = 0;
Note: See TracChangeset for help on using the changeset viewer.