summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorDenis Davydov <davydden@gmail.com>2016-05-11 15:02:14 +0200
committerDenis Davydov <davydden@gmail.com>2016-05-11 15:10:13 +0200
commit809ded74c99ac6883bc5b5e4c7a2da887131360c (patch)
tree8329825d0c4c76c72f3031f70910d64f99a4aab0 /var
parent9030541e4bc3a77f90d16969b6fff0afa387847c (diff)
downloadspack-809ded74c99ac6883bc5b5e4c7a2da887131360c.tar.gz
spack-809ded74c99ac6883bc5b5e4c7a2da887131360c.tar.bz2
spack-809ded74c99ac6883bc5b5e4c7a2da887131360c.tar.xz
spack-809ded74c99ac6883bc5b5e4c7a2da887131360c.zip
add functions for simple unit tests; refactor openblas to use them
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/openblas/package.py39
1 files changed, 8 insertions, 31 deletions
diff --git a/var/spack/repos/builtin/packages/openblas/package.py b/var/spack/repos/builtin/packages/openblas/package.py
index d147533491..47b30181a8 100644
--- a/var/spack/repos/builtin/packages/openblas/package.py
+++ b/var/spack/repos/builtin/packages/openblas/package.py
@@ -1,4 +1,5 @@
from spack import *
+from spack.package_test import *
import sys
import os
import shutil
@@ -94,42 +95,18 @@ class Openblas(Package):
self.spec.lapack_shared_lib = self.spec.blas_shared_lib
def check_install(self, spec):
- # TODO: Pull this out to the framework function which recieves a pair of xyz.c and xyz.output
- print "Checking Openblas installation..."
source_file = join_path(os.path.dirname(self.module.__file__),
'test_cblas_dgemm.c')
- output_file = join_path(os.path.dirname(self.module.__file__),
- 'test_cblas_dgemm.output')
+ blessed_file = join_path(os.path.dirname(self.module.__file__),
+ 'test_cblas_dgemm.output')
- with open(output_file, 'r') as f:
- expected = f.read()
-
- cc = which('cc')
- cc('-c', "-I%s" % join_path(spec.prefix, "include"), source_file)
+ include_flags = ["-I%s" % join_path(spec.prefix, "include")]
link_flags = ["-L%s" % join_path(spec.prefix, "lib"),
"-llapack",
"-lblas",
- "-lpthread"
- ]
+ "-lpthread"]
if '+openmp' in spec:
link_flags.extend([self.compiler.openmp_flag])
- cc('-o', "check", "test_cblas_dgemm.o",
- *link_flags)
-
- try:
- check = Executable('./check')
- output = check(return_output=True)
- except:
- output = ""
- success = output == expected
- if not success:
- print "Produced output does not match expected output."
- print "Expected output:"
- print '-'*80
- print expected
- print '-'*80
- print "Produced output:"
- print '-'*80
- print output
- print '-'*80
- raise RuntimeError("Openblas install check failed")
+
+ output = compile_c_and_execute(source_file,include_flags,link_flags)
+ compare_output_file(output,blessed_file)