|
|
Chromium Code Reviews
DescriptionDevice: enable device_junit_tests in bots
Added device_junit_tests to appropriate locations to have them
in targets "Android Tests" and "Android Tests (dbg)".
One test is disabled in PS2 (see https://crbug.com/719765).
BUG=719121
Review-Url: https://codereview.chromium.org/2868693002
Cr-Commit-Position: refs/heads/master@{#470459}
Committed: https://chromium.googlesource.com/chromium/src/+/eddfbeb9499bc63e771b234f1817b67fe88b10d0
Patch Set 1 #Patch Set 2 : Disable GamepadMappingsTest#testPS4GamepadMappings #
Total comments: 4
Patch Set 3 : s/DisabledTest/Ignore/ #
Messages
Total messages: 31 (17 generated)
Description was changed from ========== Device: enable device_junit_tests in bots Added device_junit_tests to appropriate locations to have them in targets "Android Tests" and "Android Tests (dbg)". BUG=719121 ========== to ========== Device: enable device_junit_tests in bots Added device_junit_tests to appropriate locations to have them in targets "Android Tests" and "Android Tests (dbg)". One test is disabled due to RUN ] org.chromium.device.gamepad.GamepadMappingsTest.testPS4GamepadMappings java.lang.AssertionError: expected:<101.0> but was:<102.0> [...] at org.chromium.device.gamepad.GamepadMappingsTest.testPS4GamepadMappings(GamepadMappingsTest.java:276) (l.278 after disabling it) BUG=719121 ==========
Description was changed from ========== Device: enable device_junit_tests in bots Added device_junit_tests to appropriate locations to have them in targets "Android Tests" and "Android Tests (dbg)". One test is disabled due to RUN ] org.chromium.device.gamepad.GamepadMappingsTest.testPS4GamepadMappings java.lang.AssertionError: expected:<101.0> but was:<102.0> [...] at org.chromium.device.gamepad.GamepadMappingsTest.testPS4GamepadMappings(GamepadMappingsTest.java:276) (l.278 after disabling it) BUG=719121 ========== to ========== Device: enable device_junit_tests in bots Added device_junit_tests to appropriate locations to have them in targets "Android Tests" and "Android Tests (dbg)". One test is disabled due to RUN ] org.chromium.device.gamepad.GamepadMappingsTest.testPS4GamepadMappings java.lang.AssertionError: expected:<101.0> but was:<102.0> [...] at org.chromium.device.gamepad.GamepadMappingsTest.testPS4GamepadMappings(GamepadMappingsTest.java:276) (l.277 after disabling it) BUG=719121 ==========
Patchset #2 (id:20001) has been deleted
Description was changed from ========== Device: enable device_junit_tests in bots Added device_junit_tests to appropriate locations to have them in targets "Android Tests" and "Android Tests (dbg)". One test is disabled due to RUN ] org.chromium.device.gamepad.GamepadMappingsTest.testPS4GamepadMappings java.lang.AssertionError: expected:<101.0> but was:<102.0> [...] at org.chromium.device.gamepad.GamepadMappingsTest.testPS4GamepadMappings(GamepadMappingsTest.java:276) (l.277 after disabling it) BUG=719121 ========== to ========== Device: enable device_junit_tests in bots Added device_junit_tests to appropriate locations to have them in targets "Android Tests" and "Android Tests (dbg)". One test is disabled in PS2: RUN ] org.chromium.device.gamepad.GamepadMappingsTest.testPS4GamepadMappings java.lang.AssertionError: expected:<101.0> but was:<102.0> [...] at org.chromium.device.gamepad.GamepadMappingsTest.testPS4GamepadMappings(GamepadMappingsTest.java:276) [...] (l.277 is the one failing after disabling it) BUG=719121 ==========
mcasas@chromium.org changed reviewers: + mattreynolds@chromium.org, reillyg@chromium.org
reillyg@ PTAL matterynolds@ PTAL
lgtm with a nit https://codereview.chromium.org/2868693002/diff/40001/device/gamepad/android/... File device/gamepad/android/junit/src/org/chromium/device/gamepad/GamepadMappingsTest.java (right): https://codereview.chromium.org/2868693002/diff/40001/device/gamepad/android/... device/gamepad/android/junit/src/org/chromium/device/gamepad/GamepadMappingsTest.java:259: // @Test Remove this line.
mcasas@chromium.org changed reviewers: + jbudorick@chromium.org
jbudorick@ PTAL A question: I tried having both statements: @Test @DisabledTest but that did not do the trick: the test ran and kept failing, was this expected? (This is a Robolectric test)
https://codereview.chromium.org/2868693002/diff/40001/device/gamepad/android/... File device/gamepad/android/junit/src/org/chromium/device/gamepad/GamepadMappingsTest.java (right): https://codereview.chromium.org/2868693002/diff/40001/device/gamepad/android/... device/gamepad/android/junit/src/org/chromium/device/gamepad/GamepadMappingsTest.java:260: @DisabledTest(message = "One mapping fails the index check") @DisabledTest does nothing in junit/robolectric tests. Use @Ignore instead, e.g. https://codesearch.chromium.org/chromium/src/content/public/android/junit/src...
ptal https://codereview.chromium.org/2868693002/diff/40001/device/gamepad/android/... File device/gamepad/android/junit/src/org/chromium/device/gamepad/GamepadMappingsTest.java (right): https://codereview.chromium.org/2868693002/diff/40001/device/gamepad/android/... device/gamepad/android/junit/src/org/chromium/device/gamepad/GamepadMappingsTest.java:259: // @Test On 2017/05/08 21:29:01, Reilly Grant wrote: > Remove this line. Reenabled per jbudorick@ solution of using @Ignore https://codereview.chromium.org/2868693002/diff/40001/device/gamepad/android/... device/gamepad/android/junit/src/org/chromium/device/gamepad/GamepadMappingsTest.java:260: @DisabledTest(message = "One mapping fails the index check") On 2017/05/08 23:41:43, jbudorick wrote: > @DisabledTest does nothing in junit/robolectric tests. Use @Ignore instead, e.g. > https://codesearch.chromium.org/chromium/src/content/public/android/junit/src... Thanks! Done.
Description was changed from ========== Device: enable device_junit_tests in bots Added device_junit_tests to appropriate locations to have them in targets "Android Tests" and "Android Tests (dbg)". One test is disabled in PS2: RUN ] org.chromium.device.gamepad.GamepadMappingsTest.testPS4GamepadMappings java.lang.AssertionError: expected:<101.0> but was:<102.0> [...] at org.chromium.device.gamepad.GamepadMappingsTest.testPS4GamepadMappings(GamepadMappingsTest.java:276) [...] (l.277 is the one failing after disabling it) BUG=719121 ========== to ========== Device: enable device_junit_tests in bots Added device_junit_tests to appropriate locations to have them in targets "Android Tests" and "Android Tests (dbg)". One test is disabled in PS2 (see https://crbug.com/719765). BUG=719121 ==========
rs lgtm
On 2017/05/09 00:43:08, Reilly Grant wrote: > rs lgtm Ping jbudorick@
On 2017/05/09 15:57:54, mcasas wrote: > On 2017/05/09 00:43:08, Reilly Grant wrote: > > rs lgtm > > Ping jbudorick@ oops, didn't realize you were looking for more than an answer to your question :| lgtm
The CQ bit was checked by mcasas@chromium.org to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
lgtm
The CQ bit was unchecked by mcasas@chromium.org
The CQ bit was checked by mcasas@chromium.org
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by mcasas@chromium.org
The CQ bit was checked by mcasas@chromium.org
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
The CQ bit was unchecked by commit-bot@chromium.org
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_TIMED_OUT, build has not started yet; builder either lacks capacity or does not exist (misspelled?))
The CQ bit was checked by mcasas@chromium.org
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.or...
CQ is committing da patch.
Bot data: {"patchset_id": 60001, "attempt_start_ts": 1494387127629070,
"parent_rev": "6b6e6ed31f8ea183957b3a6e9abeb8360e04512c", "commit_rev":
"eddfbeb9499bc63e771b234f1817b67fe88b10d0"}
Message was sent while issue was closed.
Description was changed from ========== Device: enable device_junit_tests in bots Added device_junit_tests to appropriate locations to have them in targets "Android Tests" and "Android Tests (dbg)". One test is disabled in PS2 (see https://crbug.com/719765). BUG=719121 ========== to ========== Device: enable device_junit_tests in bots Added device_junit_tests to appropriate locations to have them in targets "Android Tests" and "Android Tests (dbg)". One test is disabled in PS2 (see https://crbug.com/719765). BUG=719121 Review-Url: https://codereview.chromium.org/2868693002 Cr-Commit-Position: refs/heads/master@{#470459} Committed: https://chromium.googlesource.com/chromium/src/+/eddfbeb9499bc63e771b234f1817... ==========
Message was sent while issue was closed.
Committed patchset #3 (id:60001) as https://chromium.googlesource.com/chromium/src/+/eddfbeb9499bc63e771b234f1817... |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
