[clang] [clang-repl] Fix OrcRuntime lookup for Solaris and unit tests. (PR #175435)
Nico Weber via cfe-commits
cfe-commits at lists.llvm.org
Mon Jan 12 18:15:30 PST 2026
================
@@ -174,11 +183,6 @@ TEST_F(InterpreterTestBase, SanityWithRemoteExecution) {
Interpreter *Interp = Info.Interpreter.get();
ASSERT_TRUE(Interp);
- std::string ExecutorPath = getExecutorPath();
- if (!llvm::sys::fs::exists(Info.OrcRuntimePath) ||
- !llvm::sys::fs::exists(ExecutorPath))
- GTEST_SKIP();
----------------
nico wrote:
`HostSupportsOutOfProcessJIT` checks if `getExecutorPath()` is empty, but it doesn't tolerate the runtime lib missing as far as I can tell.
https://github.com/llvm/llvm-project/pull/175435
More information about the cfe-commits
mailing list