-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[AOT] Use python temporary directory for AOT tests #10518
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lhutton1 thanks for this.
I do have a slight suggestion to avoid the suppression of exceptions and make this bit readable by avoiding the indentation (that you correctly pointed out to be the reason)
Uses a python temporary directory with a context manager in an effort to solve the flaky FVP tests raised in apache#10300 and apache#10314. Now that CI is becoming more and more parallelized, the thinking is that the python temporary directory implementation might be more stable than `utils.tempdir`. Removing the XFail markings off the affected tests, but keeping the work around implemented in apache#10408 while we monitor with the above change. Change-Id: Id07869b51cd2278ec4885ef964bc1b23892ba235
e12d6ba
to
b33e292
Compare
d7a8aa8
to
644b273
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
644b273
to
6b42f15
Compare
Change-Id: Iba0644db14e50648f6dc99a4ed0f455641c31912
6b42f15
to
b2e51c0
Compare
Thanks @lhutton1 . This is merged now! |
* [AOT] Use python temporary directory for AOT tests Uses a python temporary directory with a context manager in an effort to solve the flaky FVP tests raised in apache#10300 and apache#10314. Now that CI is becoming more and more parallelized, the thinking is that the python temporary directory implementation might be more stable than `utils.tempdir`. Removing the XFail markings off the affected tests, but keeping the work around implemented in apache#10408 while we monitor with the above change. Change-Id: Id07869b51cd2278ec4885ef964bc1b23892ba235 * alter context manager to make more readable Change-Id: Iba0644db14e50648f6dc99a4ed0f455641c31912
Uses a python temporary directory with a context manager in an effort to solve the flaky FVP tests raised in #10300 and #10314. Now that CI is becoming more and more parallelized, the thinking is that the python temporary directory implementation might be more stable than
utils.tempdir
. Removing the XFail markings off the affected tests, but keeping the work around implemented in #10408 while we monitor with the above change.cc @manupa-arm @ekalda @grant-arm @Mousius