-
Notifications
You must be signed in to change notification settings - Fork 15.1k
[fix test] Move typedefs-with-same-name.test into ARM folder #167005
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
Conversation
|
@llvm/pr-subscribers-debuginfo Author: Roy Shi (royitaqi) Changes#166767 mistakenly put the test file outside the ARM folder, causing build bots that only have an x86 target to fail. Moving it into the ARM folder. NOTE: I'm still building/testing locally. Full diff: https://github.com/llvm/llvm-project/pull/167005.diff 1 Files Affected:
diff --git a/llvm/test/tools/dsymutil/typedefs-with-same-name.test b/llvm/test/tools/dsymutil/ARM/typedefs-with-same-name.test
similarity index 100%
rename from llvm/test/tools/dsymutil/typedefs-with-same-name.test
rename to llvm/test/tools/dsymutil/ARM/typedefs-with-same-name.test
|
|
Thanks for the quick review, @JDevlieghere. I appreciate it. The patch has been tested locally. I will merge as soon as the CI Checks pass. |
|
Hi @JDevlieghere: Do you suggest me to merge, or what else should I do in this case? |
|
The constructor error is likely due to this: #166850 |
Thanks for the info and the revert. Let me rerun CI Checks just to be sure that my patch works. |
Thanks for this fix. Maybe we need to rebase? |
Yeah it seems it doesn't automatically rebase onto the latest main. Let me do it. |
|
It seems all tests passed in CI: Yet another seemingly irrelevant error prevented the job to finish green. I am going to merge this patch, because:
|
|
The CI errors seem irrelevant to this PR. Please land this if it passed tests locally. It will unblock our bot. Thanks! |
|
One of the bots that this patch aims to fix has recovered. Thanks to @Kewen12 for the suggestion of landing the patch without waiting for CI to become all green. |
#166767 mistakenly put the test file outside the ARM folder, causing build bots that only have an x86 target to fail. Moving it into the ARM folder.