Skip to content

Commit

Permalink
refactor(meson): disable test-drive with intel compilers (MODFLOW-USG…
Browse files Browse the repository at this point in the history
…S#1449)

* limited to ifort <= 2021.6 on linux/mac
* currently no intel support on windows
* todo: reenable if updated upstream
  • Loading branch information
wpbonelli authored Nov 17, 2023
1 parent 8923562 commit 53902e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,6 @@ unittests/
**/.benchmarks

# compiler compatibility markdown tables
.github/compat/*.md
.github/compat/*.md

**.DS_Store
2 changes: 1 addition & 1 deletion autotest/meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
test_drive = dependency('test-drive', required : false)
if test_drive.found()
if test_drive.found() and not fc_id.contains('intel')
tests = [
'ArrayHandlers',
'DevFeature',
Expand Down

0 comments on commit 53902e0

Please sign in to comment.