From 4ef98246489fc403fc5538fc46cfdedbda9fa14c Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Wed, 18 Jan 2023 16:09:38 +0100 Subject: [PATCH] Fix integration test suite for f36 Suppress libunwind tests (which don't have clang integration on f36) and libcxx static tests (which is broken on f36 due to non-pic libc++abi.a). --- tests/integration-test-suite/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration-test-suite/test.sh b/tests/integration-test-suite/test.sh index a49bdd4..f1aade7 100755 --- a/tests/integration-test-suite/test.sh +++ b/tests/integration-test-suite/test.sh @@ -33,5 +33,5 @@ cd $(mktemp -d -p /var/tmp) git clone $repo_url cd llvm-toolchain-integration-test-suite mkdir _build && cd _build -cmake .. -GNinja ${CMAKE_CXXLIB:-} +cmake .. -GNinja -DENABLE_LIBUNWIND=OFF -DENABLE_STATIC_LIBCXX=OFF ${CMAKE_CXXLIB:-} cmake --build . $thread_args --target check