Currently the XCOFF backend does not support writing 64-bit object
files, which the ORC JIT tests will try to exercise if we are on AIX. This patch
selectively disables the tests on AIX for now.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Unit Tests
Unit Tests
Event Timeline
Comment Actions
Note: Would have preferred to use GTEST_SKIP to skip the tests, but we don't seem to have it on our google test version.
llvm/unittests/ExecutionEngine/Orc/RemoteObjectLayerTest.cpp | ||
---|---|---|
22 | Do we want to use the do { } while(false) pattern for statement-like macros? |
Comment Actions
Can we make a test that uses the interface that first triggers the error we're seeing in these tests and actually expects the error? If it is not too difficult, then it would help to ensure that the functional tests being skipped here are restored when the error goes away.
Comment Actions
LGTM. RemoteObjectLayer is deprecated and will be removed soon, so anything that makes the builders happy is fine by me.
Do we want to use the do { } while(false) pattern for statement-like macros?