summaryrefslogtreecommitdiff
path: root/openmp/cmake
diff options
context:
space:
mode:
authorMichael Kruse <llvm-project@meinersbur.de>2021-12-12 10:29:35 -0600
committerMichael Kruse <llvm-project@meinersbur.de>2021-12-12 10:52:53 -0600
commit77e019c23389b508d75d57653069868a2812e5c7 (patch)
tree4b09f70360cc32333da3bf675d63d15b29b6700f /openmp/cmake
parent483499670e294fe7a2ff6b1937f81d593a458e88 (diff)
downloadllvm-77e019c23389b508d75d57653069868a2812e5c7.tar.gz
[OpenMP] Add "not" to test dependencies.
The `not` program is used to test executions prefixed with `%libomptarget-run-fail-`. Currently `not` is not used for libomp tests, but might be used in the future and its dependency does not add any additional burden over the already established `FileCheck` dependency. Required to add libomptarget testing to the Phabricator pre-merge check (see https://github.com/google/llvm-premerge-checks/issues/368) Reviewed By: jdenny, JonChesterfield Differential Revision: https://reviews.llvm.org/D115454
Diffstat (limited to 'openmp/cmake')
-rw-r--r--openmp/cmake/OpenMPTesting.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/openmp/cmake/OpenMPTesting.cmake b/openmp/cmake/OpenMPTesting.cmake
index 6a6d1cb87b01..81732ce1815f 100644
--- a/openmp/cmake/OpenMPTesting.cmake
+++ b/openmp/cmake/OpenMPTesting.cmake
@@ -196,14 +196,14 @@ function(add_openmp_testsuite target comment)
${comment}
${ARG_UNPARSED_ARGUMENTS}
EXCLUDE_FROM_CHECK_ALL
- DEPENDS clang FileCheck ${ARG_DEPENDS}
+ DEPENDS clang FileCheck not ${ARG_DEPENDS}
ARGS ${ARG_ARGS}
)
else()
add_lit_testsuite(${target}
${comment}
${ARG_UNPARSED_ARGUMENTS}
- DEPENDS clang FileCheck ${ARG_DEPENDS}
+ DEPENDS clang FileCheck not ${ARG_DEPENDS}
ARGS ${ARG_ARGS}
)
endif()