Skip to content

Commit

Permalink
add absence tests for fortran-bits in regular openmp output
Browse files Browse the repository at this point in the history
  • Loading branch information
h-vetinari committed Oct 2, 2024
1 parent c61cba1 commit b5ee0c3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ outputs:
- test -f $PREFIX/include/omp.h # [unix]
- if not exist %LIBRARY_INC%\omp.h exit 1 # [win]

# absence of fortran bits
- test ! -f $PREFIX/include/omp_lib.mod # [linux]
- test ! -f $PREFIX/include/omp_lib_kinds.mod # [linux]
- if exist %LIBRARY_INC%\omp_lib.mod exit 1 # [win]
- if exist %LIBRARY_INC%\omp_lib_kinds.mod exit 1 # [win]

# shared library
- test -f $PREFIX/lib/libomp.so # [linux]
- test -f $PREFIX/lib/libomp.dylib # [osx]
Expand Down

0 comments on commit b5ee0c3

Please sign in to comment.