summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorHarmen Stoppels <harmenstoppels@gmail.com>2023-07-14 10:53:16 +0200
committerGitHub <noreply@github.com>2023-07-14 10:53:16 +0200
commite16397b5d865d402c749482d05bb2bdc09b96661 (patch)
tree8b7d5b22fbfa26a03f299ec59aa9b493d0cd0d3f /var
parent2e9e7ce7c49990cccd8a8d777f0491978d72220d (diff)
downloadspack-e16397b5d865d402c749482d05bb2bdc09b96661.tar.gz
spack-e16397b5d865d402c749482d05bb2bdc09b96661.tar.bz2
spack-e16397b5d865d402c749482d05bb2bdc09b96661.tar.xz
spack-e16397b5d865d402c749482d05bb2bdc09b96661.zip
disable superlu test (#38894)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/superlu-dist/package.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/var/spack/repos/builtin/packages/superlu-dist/package.py b/var/spack/repos/builtin/packages/superlu-dist/package.py
index 7af5736993..bca3664068 100644
--- a/var/spack/repos/builtin/packages/superlu-dist/package.py
+++ b/var/spack/repos/builtin/packages/superlu-dist/package.py
@@ -160,18 +160,3 @@ class SuperluDist(CMakePackage, CudaPackage, ROCmPackage):
"""Copy the example matrices after the package is installed to an
install test subdirectory for use during `spack test run`."""
self.cache_extra_test_sources([self.examples_src_dir])
-
- def test_pddrive(self):
- """run cached pddrive"""
- if not self.spec.satisfies("@7.2.0:"):
- raise SkipTest("Test is only available for v7.2.0 on")
-
- test_dir = join_path(self.test_suite.current_test_cache_dir, self.examples_src_dir)
- superludriver = join_path(self.prefix.lib, "EXAMPLE", "pddrive")
-
- with working_dir(test_dir):
- # Smoke test input parameters: -r 2 -c 2 g20.rua
- test_args = ["-n", "4", superludriver, "-r", "2", "-c", "2", "g20.rua"]
- # Find the correct mpirun command
- mpiexe_f = which("srun", "mpirun", "mpiexec")
- mpiexe_f(*test_args)