WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
171679
buildbot: Cleanup simulators after running tests
https://bugs.webkit.org/show_bug.cgi?id=171679
Summary
buildbot: Cleanup simulators after running tests
Jonathan Bedard
Reported
2017-05-04 11:39:12 PDT
In some cases, our simulator tear-down code fails to run. Buildbot should explicitly search for simulators created by our WebKit scripts and clean them up after running layout tests on iOS simulators.
Attachments
Patch
(6.04 KB, patch)
2017-05-04 11:44 PDT
,
Jonathan Bedard
no flags
Details
Formatted Diff
Diff
Patch
(1.58 KB, patch)
2017-05-04 15:55 PDT
,
Jonathan Bedard
no flags
Details
Formatted Diff
Diff
Patch
(2.89 KB, patch)
2017-05-08 10:51 PDT
,
Jonathan Bedard
no flags
Details
Formatted Diff
Diff
Patch for landing
(2.88 KB, patch)
2017-05-08 12:26 PDT
,
Jonathan Bedard
no flags
Details
Formatted Diff
Diff
Show Obsolete
(3)
View All
Add attachment
proposed patch, testcase, etc.
Radar WebKit Bug Importer
Comment 1
2017-05-04 11:39:52 PDT
<
rdar://problem/31994361
>
Jonathan Bedard
Comment 2
2017-05-04 11:44:15 PDT
Created
attachment 309071
[details]
Patch
Aakash Jain
Comment 3
2017-05-04 14:47:05 PDT
Comment on
attachment 309071
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=309071&action=review
> Tools/BuildSlaveSupport/cleanup-simulators:34 > +
Nit: don't we need two empty lines here? how does style check pass this.
> Tools/BuildSlaveSupport/cleanup-simulators:42 > + subprocess.call(['killall', '-9', '-m', 'Simulator'])
I feel that since this script shares code with webkitpy and currently webkitpy has all the simulator code, it might be better to have this script in webkitpy and try to re-use the existing code.
> Tools/BuildSlaveSupport/cleanup-simulators:50 > + simctllist = run_command(['xcrun', 'simctl', 'list']).splitlines()
Nit: can consider renaming simctllist to simctl_list to make it more readable.
> Tools/BuildSlaveSupport/cleanup-simulators:69 > + if device_state(udid) != 1:
might be better to use something like Simulator.DeviceState.SHUTDOWN to clearly indicate what does 1 indicate.
Jonathan Bedard
Comment 4
2017-05-04 15:55:15 PDT
Created
attachment 309110
[details]
Patch
Jonathan Bedard
Comment 5
2017-05-04 15:56:34 PDT
Sending the 'shutdown' command to a booted simulator will actually shut all booted simulators down. This seems like the simplest approach.
Aakash Jain
Comment 6
2017-05-04 15:59:26 PDT
looks good to me, assuming it pass your local testing and EWS.
Daniel Bates
Comment 7
2017-05-04 18:11:30 PDT
Comment on
attachment 309110
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=309110&action=review
> Tools/BuildSlaveSupport/kill-old-processes:116 > + os.system("xcrun simctl shutdown booted")
Does this shutdown all booted simulators?
Daniel Bates
Comment 8
2017-05-04 18:12:17 PDT
(In reply to Daniel Bates from
comment #7
)
> Comment on
attachment 309110
[details]
> Patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=309110&action=review
> > > Tools/BuildSlaveSupport/kill-old-processes:116 > > + os.system("xcrun simctl shutdown booted") > > Does this shutdown all booted simulators?
Never mind you answered this in
comment #5
.
Alexey Proskuryakov
Comment 9
2017-05-04 22:45:09 PDT
Comment on
attachment 309110
[details]
Patch What will happen if iOS SDK isn't installed? I think that there won't be a simctl to run.
Jonathan Bedard
Comment 10
2017-05-05 08:05:00 PDT
(In reply to Alexey Proskuryakov from
comment #9
)
> Comment on
attachment 309110
[details]
> Patch > > What will happen if iOS SDK isn't installed? I think that there won't be a > simctl to run.
Actually, simctl is still there, just without any iOS SDKs or simulators. I tested this on some of our Mac bots. This command will succeed, but do nothing on them.
WebKit Commit Bot
Comment 11
2017-05-05 08:33:21 PDT
Comment on
attachment 309110
[details]
Patch Clearing flags on attachment: 309110 Committed
r216244
: <
http://trac.webkit.org/changeset/216244
>
WebKit Commit Bot
Comment 12
2017-05-05 08:33:22 PDT
All reviewed patches have been landed. Closing bug.
Jonathan Bedard
Comment 13
2017-05-08 10:44:51 PDT
We need to re-open this bug since builedbot runs kill-old-processes as sudo. Simctl separates simulators for each user, so the original patch did not work as intended.
Jonathan Bedard
Comment 14
2017-05-08 10:51:12 PDT
Created
attachment 309379
[details]
Patch
Aakash Jain
Comment 15
2017-05-08 12:24:53 PDT
Comment on
attachment 309379
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=309379&action=review
looks fine to me.
> Tools/ChangeLog:8 > + Simctl is partitioned for each user. Since kill-old-processes
Nit: "Simctl" -> "simctl", since its a command name.
> Tools/BuildSlaveSupport/kill-old-processes:116 > + if os.geteuid() != 0 or not user:
better to reverse the if else to make it more readable.
Jonathan Bedard
Comment 16
2017-05-08 12:26:43 PDT
Created
attachment 309394
[details]
Patch for landing
WebKit Commit Bot
Comment 17
2017-05-08 13:07:31 PDT
Comment on
attachment 309394
[details]
Patch for landing Clearing flags on attachment: 309394 Committed
r216447
: <
http://trac.webkit.org/changeset/216447
>
WebKit Commit Bot
Comment 18
2017-05-08 13:07:34 PDT
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug