Changeset 80008 in webkit


Ignore:
Timestamp:
Mar 1, 2011 10:00:23 AM (13 years ago)
Author:
Dimitri Glazkov
Message:

2011-03-01 Dimitri Glazkov <Dimitri Glazkov>

Reviewed by Tony Gentilcore.

Move the checks to exclude Python/Perl tests for Chromium Win build to the right place.
https://bugs.webkit.org/show_bug.cgi?id=55476

Chromium Win uses BuildAndTestFactory, not TestFactory.

  • BuildSlaveSupport/build.webkit.org-config/master.cfg: Moved to the right place.
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg

    r79724 r80008  
    446446        # Tiger's Python 2.3 is too old.  WebKit Python requires 2.5+.
    447447        # Sadly we have no way to detect the version on the slave from here.
    448         if platform != "mac-tiger" and platform != "chromium-win":
     448        if platform != "mac-tiger":
    449449            self.addStep(RunPythonTests)
    450         if platform != "chromium-win":
    451             self.addStep(RunPerlTests)
     450        self.addStep(RunPerlTests)
    452451        self.addStep(ArchiveTestResults)
    453452        self.addStep(UploadTestResults)
     
    468467        # Tiger's Python 2.3 is too old.  WebKit Python requires 2.5+.
    469468        # Sadly we have no way to detect the version on the slave from here.
    470         if platform != "mac-tiger":
     469        # Chromium Win runs in non-Cygwin environment, which is not yet fit
     470        # for running tests. This can be removed once bug 48166 is fixed.
     471        if platform != "mac-tiger" and platform != "chromium-win":
    471472            self.addStep(RunPythonTests)
    472         self.addStep(RunPerlTests)
     473        # Chromium Win runs in non-Cygwin environment, which is not yet fit
     474        # for running tests. This can be removed once bug 48166 is fixed.
     475        if platform != "chromium-win":
     476            self.addStep(RunPerlTests)
    473477        self.addStep(ArchiveTestResults)
    474478        self.addStep(UploadTestResults)
  • trunk/Tools/ChangeLog

    r80001 r80008  
     12011-03-01  Dimitri Glazkov  <dglazkov@chromium.org>
     2
     3        Reviewed by Tony Gentilcore.
     4
     5        Move the checks to exclude Python/Perl tests for Chromium Win build to the right place.
     6        https://bugs.webkit.org/show_bug.cgi?id=55476
     7
     8        Chromium Win uses BuildAndTestFactory, not TestFactory.
     9
     10        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Moved to the right place.
     11
    1122011-03-01  Adam Roben  <aroben@apple.com>
    213
Note: See TracChangeset for help on using the changeset viewer.