Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Issue 2805133005: Support running eg tests with xctestrun file on devices. (Closed)

Created:
3 years, 8 months ago by huangml1
Modified:
3 years, 8 months ago
Reviewers:
smut
CC:
chromium-reviews, ios-reviews_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Support running eg tests with xctestrun file on devices. - Remove dependency on TestProject - Support xctestrun file - Support retries of xctests on devices BUG=708859 Review-Url: https://codereview.chromium.org/2805133005 Cr-Commit-Position: refs/heads/master@{#463326} Committed: https://chromium.googlesource.com/chromium/src/+/18e8b296007291857d04a633f2ede2907f5ed231

Patch Set 1 #

Total comments: 8

Patch Set 2 : comments #

Total comments: 3

Patch Set 3 : Tuple #

Total comments: 4

Patch Set 4 : test-filter #

Total comments: 1

Patch Set 5 : test-filter #

Unified diffs Side-by-side diffs Delta from patch set Stats (+32 lines, -272 lines) Patch
D ios/build/bots/scripts/TestProject/TestProject.xcodeproj/project.pbxproj View 1 chunk +0 lines, -154 lines 0 comments Download
D ios/build/bots/scripts/TestProject/TestProject.xcodeproj/xcshareddata/xcschemes/TestProject.xcscheme View 1 chunk +0 lines, -103 lines 0 comments Download
M ios/build/bots/scripts/test_runner.py View 1 2 3 4 4 chunks +29 lines, -12 lines 0 comments Download
M ios/build/bots/scripts/xctest_utils.py View 1 3 chunks +3 lines, -3 lines 0 comments Download

Messages

Total messages: 21 (6 generated)
huangml1
PTAL, thanks!
3 years, 8 months ago (2017-04-07 21:44:38 UTC) #2
smut
https://codereview.chromium.org/2805133005/diff/1/ios/build/bots/scripts/test_runner.py File ios/build/bots/scripts/test_runner.py (right): https://codereview.chromium.org/2805133005/diff/1/ios/build/bots/scripts/test_runner.py#newcode653 ios/build/bots/scripts/test_runner.py:653: self.xctestrun_file = tempfile.mktemp() mktemp is deprecated, prefer mkstemp. https://codereview.chromium.org/2805133005/diff/1/ios/build/bots/scripts/test_runner.py#newcode739 ...
3 years, 8 months ago (2017-04-07 21:52:00 UTC) #3
huangml1
https://codereview.chromium.org/2805133005/diff/1/ios/build/bots/scripts/test_runner.py File ios/build/bots/scripts/test_runner.py (right): https://codereview.chromium.org/2805133005/diff/1/ios/build/bots/scripts/test_runner.py#newcode653 ios/build/bots/scripts/test_runner.py:653: self.xctestrun_file = tempfile.mktemp() On 2017/04/07 21:52:00, smut wrote: > ...
3 years, 8 months ago (2017-04-07 22:29:20 UTC) #4
smut
https://codereview.chromium.org/2805133005/diff/20001/ios/build/bots/scripts/test_runner.py File ios/build/bots/scripts/test_runner.py (right): https://codereview.chromium.org/2805133005/diff/20001/ios/build/bots/scripts/test_runner.py#newcode653 ios/build/bots/scripts/test_runner.py:653: self.xctestrun_file = tempfile.mkstemp() mkstemp returns a tuple of file ...
3 years, 8 months ago (2017-04-07 22:31:25 UTC) #5
huangml1
https://codereview.chromium.org/2805133005/diff/20001/ios/build/bots/scripts/test_runner.py File ios/build/bots/scripts/test_runner.py (right): https://codereview.chromium.org/2805133005/diff/20001/ios/build/bots/scripts/test_runner.py#newcode653 ios/build/bots/scripts/test_runner.py:653: self.xctestrun_file = tempfile.mkstemp() On 2017/04/07 22:31:25, smut wrote: > ...
3 years, 8 months ago (2017-04-07 22:45:56 UTC) #8
smut
I am running some downstream try jobs now with ios_internal/tools/twosided.py (no links because this is ...
3 years, 8 months ago (2017-04-07 22:49:41 UTC) #9
smut
Seeing some successful EG test executions on devices. Lgtm.
3 years, 8 months ago (2017-04-07 23:35:45 UTC) #10
smut
https://codereview.chromium.org/2805133005/diff/80001/ios/build/bots/scripts/test_runner.py File ios/build/bots/scripts/test_runner.py (right): https://codereview.chromium.org/2805133005/diff/80001/ios/build/bots/scripts/test_runner.py#newcode740 ios/build/bots/scripts/test_runner.py:740: {'SkipTestIdentifiers': ['%s' % test_filter]}) Actually, is this right? What ...
3 years, 8 months ago (2017-04-07 23:37:52 UTC) #11
huangml1
https://codereview.chromium.org/2805133005/diff/80001/ios/build/bots/scripts/test_runner.py File ios/build/bots/scripts/test_runner.py (right): https://codereview.chromium.org/2805133005/diff/80001/ios/build/bots/scripts/test_runner.py#newcode740 ios/build/bots/scripts/test_runner.py:740: {'SkipTestIdentifiers': ['%s' % test_filter]}) On 2017/04/07 23:37:52, smut wrote: ...
3 years, 8 months ago (2017-04-07 23:44:57 UTC) #12
smut
https://codereview.chromium.org/2805133005/diff/80001/ios/build/bots/scripts/test_runner.py File ios/build/bots/scripts/test_runner.py (right): https://codereview.chromium.org/2805133005/diff/80001/ios/build/bots/scripts/test_runner.py#newcode740 ios/build/bots/scripts/test_runner.py:740: {'SkipTestIdentifiers': ['%s' % test_filter]}) On 2017/04/07 23:44:57, huangml1 wrote: ...
3 years, 8 months ago (2017-04-07 23:46:33 UTC) #13
huangml1
https://codereview.chromium.org/2805133005/diff/80001/ios/build/bots/scripts/test_runner.py File ios/build/bots/scripts/test_runner.py (right): https://codereview.chromium.org/2805133005/diff/80001/ios/build/bots/scripts/test_runner.py#newcode740 ios/build/bots/scripts/test_runner.py:740: {'SkipTestIdentifiers': ['%s' % test_filter]}) On 2017/04/07 23:46:33, smut wrote: ...
3 years, 8 months ago (2017-04-07 23:52:16 UTC) #14
huangml1
https://codereview.chromium.org/2805133005/diff/100001/ios/build/bots/scripts/test_runner.py File ios/build/bots/scripts/test_runner.py (right): https://codereview.chromium.org/2805133005/diff/100001/ios/build/bots/scripts/test_runner.py#newcode688 ios/build/bots/scripts/test_runner.py:688: # self.install_app() sorry.
3 years, 8 months ago (2017-04-07 23:54:01 UTC) #15
smut
lgtm
3 years, 8 months ago (2017-04-08 00:01:28 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2805133005/120001
3 years, 8 months ago (2017-04-10 17:32:45 UTC) #18
commit-bot: I haz the power
3 years, 8 months ago (2017-04-10 18:12:29 UTC) #21
Message was sent while issue was closed.
Committed patchset #5 (id:120001) as
https://chromium.googlesource.com/chromium/src/+/18e8b296007291857d04a633f2ed...

Powered by Google App Engine
This is Rietveld 408576698