1
0
Fork 0

Enable compiler-rt tests on Windows

Locally, disabling the fuzzer (already globally disabled) plus the ORC tests makes everything else pass.
This commit is contained in:
Arthur Eubanks 2023-07-19 10:47:23 -07:00 committed by Mikhail Goncharov
parent b3ba37eb05
commit f5079fa3ee
2 changed files with 2 additions and 3 deletions

View file

@ -81,8 +81,6 @@ excludedProjects:
- openmp # TODO: check: kuhnel has trouble with the Perl installation - openmp # TODO: check: kuhnel has trouble with the Perl installation
- cross-project-tests # test failing - cross-project-tests # test failing
- check-cxxabi - check-cxxabi
# test stuck, needs to be killed manually: instrprof-multiprocess.test
- compiler-rt
linux: linux:
- libcxx # has custom checks - libcxx # has custom checks
- libcxxabi # has custom checks - libcxxabi # has custom checks

View file

@ -30,4 +30,5 @@ arguments:
- '-D CMAKE_CXX_FLAGS=-gmlt' - '-D CMAKE_CXX_FLAGS=-gmlt'
# Bolt https://github.com/google/llvm-premerge-checks/issues/364#issuecomment-1013952831. # Bolt https://github.com/google/llvm-premerge-checks/issues/364#issuecomment-1013952831.
- '-DBOLT_CLANG_EXE=/usr/bin/clang' - '-DBOLT_CLANG_EXE=/usr/bin/clang'
windows: [] windows:
- '-D COMPILER_RT_BUILD_ORC=OFF' # ORC tests failing, should investigate.