diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-06-28 10:02:43 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-28 10:02:43 -0700 |
commit | 0fd58fb5857f7ff1f10b76622c7cd3823e68f813 (patch) | |
tree | 2c1849499ab3048597ce9866e9c17f4b46477632 | |
parent | ad48ad75865e07c4886ec2cbceca6a2d428b690c (diff) | |
parent | 32c801bbf6ddcbec05a4b4b6b7a01ba1f4daf46b (diff) | |
download | spack-0fd58fb5857f7ff1f10b76622c7cd3823e68f813.tar.gz spack-0fd58fb5857f7ff1f10b76622c7cd3823e68f813.tar.bz2 spack-0fd58fb5857f7ff1f10b76622c7cd3823e68f813.tar.xz spack-0fd58fb5857f7ff1f10b76622c7cd3823e68f813.zip |
Merge pull request #1133 from davydden/pkg/dealii_fix_tests
dealii: run more unit tests when building @dev
-rw-r--r-- | var/spack/repos/builtin/packages/dealii/package.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/dealii/package.py b/var/spack/repos/builtin/packages/dealii/package.py index 23ec74abed..068dbec10a 100644 --- a/var/spack/repos/builtin/packages/dealii/package.py +++ b/var/spack/repos/builtin/packages/dealii/package.py @@ -245,7 +245,7 @@ class Dealii(Package): # change Linear Algebra to Trilinos # The below filter_file should be different for versions # before and after 8.4.0 - if spec.satisfies('@8.4.0:'): + if spec.satisfies('@8.4.0:') or spec.satisfies('@dev'): filter_file(r'(\/\/ #define FORCE_USE_OF_TRILINOS.*)', ('#define FORCE_USE_OF_TRILINOS'), 'step-40.cc') else: @@ -257,7 +257,7 @@ class Dealii(Package): # the rest of the tests on step 40 only works for # dealii version 8.4.0 and after - if spec.satisfies('@8.4.0:'): + if spec.satisfies('@8.4.0:') or spec.satisfies('@dev'): print('=====================================') print('=== Step-40 Trilinos SuperluDist ====') print('=====================================') |