Skip to content

Commit

Permalink
use fake version to test initialization of IntelBase family of easybl…
Browse files Browse the repository at this point in the history
…ocks
  • Loading branch information
lexming committed Dec 18, 2024
1 parent 373dd17 commit 969518a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/easyblocks/init_easyblocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,10 @@ def innertest(self):
elif easyblock_fn == 'systemmpi.py':
# use OpenMPI as name when testing SystemMPI easyblock
innertest = make_inner_test(easyblock, name='OpenMPI', version='system')
elif easyblock_fn in ['advisor.py', 'icc.py', 'iccifort.py', 'ifort.py', 'imkl.py', 'imkl_fftw.py',
'inspector.py', 'itac.py', 'tbb.py', 'vtune.py']:
# family of IntelBase easyblocks have a minimum version support based on currently supported toolchains
innertest = make_inner_test(easyblock, version='9999.9')
elif easyblock_fn == 'intel_compilers.py':
# custom easyblock for intel-compilers (oneAPI) requires v2021.x or newer
innertest = make_inner_test(easyblock, name='intel-compilers', version='2021.1')
Expand Down

0 comments on commit 969518a

Please sign in to comment.