OpenMPToolsInterface / llvm-project

The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. Note: the repository does not accept github pull requests at this moment. Please submit your patches at http://reviews.llvm.org.
http://llvm.org
2 stars 4 forks source link

Single make check target to test all components #43

Closed vigbalu closed 3 years ago

vigbalu commented 3 years ago

Existing targets run tests for specific component and "check-openmp" omits ompt and ompd while testing, so adding the new target that will check all components

jprotze commented 3 years ago

EXCLUDE_FROM_CHECK_ALL is not necessary, also adding the check-omp-all is not necessary.

We only need EXCLUDE_FROM_CHECK_ALL for check-ompt, because otherwise the tests would run twice. The OMPT tests are in a subdirectory of the check-libomp tests.

vigbalu commented 3 years ago

Removed "check-openmp-all". Now ompd tests runs under "check-openmp" itself.