From 53902e0e5bcc88dbb9401431a890f372c82ed988 Mon Sep 17 00:00:00 2001 From: wpbonelli Date: Fri, 17 Nov 2023 10:09:23 -0500 Subject: [PATCH] refactor(meson): disable test-drive with intel compilers (#1449) * limited to ifort <= 2021.6 on linux/mac * currently no intel support on windows * todo: reenable if updated upstream --- .gitignore | 4 +++- autotest/meson.build | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ec2abadcb65..959f560e70f 100644 --- a/.gitignore +++ b/.gitignore @@ -135,4 +135,6 @@ unittests/ **/.benchmarks # compiler compatibility markdown tables -.github/compat/*.md \ No newline at end of file +.github/compat/*.md + +**.DS_Store diff --git a/autotest/meson.build b/autotest/meson.build index 295876dde09..8e414029306 100644 --- a/autotest/meson.build +++ b/autotest/meson.build @@ -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',