-
Notifications
You must be signed in to change notification settings - Fork 13.6k
[NFC][libc++][libc++abi][libunwind][test] Fix/unify AIX triples used in LIT tests #101196
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
// on AIX. Option -O3 is required so that the compiler will re-use the value | ||
// in the condition register instead of re-evaluating the condition expression. | ||
|
||
// REQUIRES: target=powerpc{{(64)?}}-ibm-aix | ||
// REQUIRES: target={{.+}}-aix{{.*}} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why drop the vendor in the vendor specific directory? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
IBM is the only vendor shipping the AIX OS so I think the vendor part is unnecessary. This is similar to {{.+}}-zos{{.*}}. |
||
// ADDITIONAL_COMPILE_FLAGS: -O3 | ||
// UNSUPPORTED: no-exceptions | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
// Check that the PowerPC vector registers are restored properly during | ||
// unwinding. Option -mabi=vec-extabi is required to compile the test case. | ||
|
||
// REQUIRES: target=powerpc{{(64)?}}-ibm-aix | ||
// REQUIRES: target={{.+}}-aix{{.*}} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Likewise |
||
// ADDITIONAL_COMPILE_FLAGS: -mabi=vec-extabi | ||
// UNSUPPORTED: no-exceptions | ||
|
||
|
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.
Why remove the vendor in the vendor specific directory?
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.
IBM is the only vendor shipping the AIX OS so I think the vendor part is unnecessary. This is similar to
{{.+}}-zos{{.*}}
.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.
But then we should be able to hoist these tests out of the vendor/ibm directory and into the general test set? Perhaps @ldionne has opinions on this.
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.
I see what you mean, thanks! I can do it if we think it is better to move them out of the
vendor/ibm
directory.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.
libcxx/test/vendor
is a bit mis-named, I guess. It's more likelibcxx/test/vendor-or-extremely-platform-specific-stuff
. I think it makes more sense to keep this here since this test doesn't make sense outside of AIX.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.
Thanks!