Changeset 181255 in webkit


Ignore:
Timestamp:
Mar 8, 2015 7:07:38 PM (9 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

Do not show passing test result on output of EFL layout test
https://bugs.webkit.org/show_bug.cgi?id=142380

Reviewed by Darin Adler.

To show passing tests has caused inconvenience when we detect problem tests
in output of layout test. So this patch applies '--debug-rwt-logging' except for EFL port
in order not to show passing tests in the output of EFL layout test.

  • BuildSlaveSupport/build.webkit.org-config/master.cfg:

(RunWebKitTests.start):

Location:
trunk/Tools
Files:
2 edited

Legend:

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

    r181093 r181255  
    325325               "--master-name", "webkit.org",
    326326               "--test-results-server", "webkit-test-results.appspot.com",
    327                "--debug-rwt-logging",
    328327               "--exit-after-n-crashes-or-timeouts", "50",
    329328               "--exit-after-n-failures", "500",
     
    334333        appendCustomBuildFlags(self, platform, self.getProperty('fullPlatform'))
    335334        additionalArguments = self.getProperty('additionalArguments')
     335
     336        if platform != "efl":
     337            self.setCommand(self.command + ['--debug-rwt-logging'])
    336338
    337339        if platform == "win":
  • trunk/Tools/ChangeLog

    r181254 r181255  
     12015-03-08  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Do not show passing test result on output of EFL layout test
     4        https://bugs.webkit.org/show_bug.cgi?id=142380
     5
     6        Reviewed by Darin Adler.
     7
     8        To show passing tests has caused inconvenience when we detect problem tests
     9        in output of layout test. So this patch applies '--debug-rwt-logging' except for EFL port
     10        in order not to show passing tests in the output of EFL layout test.
     11
     12        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
     13        (RunWebKitTests.start):
     14
    1152015-03-08  Brent Fulgham  <bfulgham@apple.com>
    216
Note: See TracChangeset for help on using the changeset viewer.