Bugfix: Tasmanian stand alone test (#28496)

This commit is contained in:
Richarda Butler 2022-01-25 17:10:28 -08:00 committed by GitHub
parent 75db515af2
commit 38a1036c46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,10 @@
# #
# SPDX-License-Identifier: (Apache-2.0 OR MIT) # SPDX-License-Identifier: (Apache-2.0 OR MIT)
import os
from llnl.util import tty
from spack import * from spack import *
@ -153,10 +157,52 @@ def cmake_args(self):
return args return args
# TODO: Replace this method and its 'get' use for cmake path with
# join_path(self.spec['cmake'].prefix.bin, 'cmake') once stand-alone
# tests can access build dependencies through self.spec['cmake'].
def cmake_bin(self, set=True):
"""(Hack) Set/get cmake dependency path."""
filepath = join_path(self.install_test_root, 'cmake_bin_path.txt')
if set:
with open(filepath, 'w') as out_file:
cmake_bin = join_path(self.spec['cmake'].prefix.bin, 'cmake')
out_file.write('{0}\n'.format(cmake_bin))
elif os.path.isfile(filepath):
with open(filepath, 'r') as in_file:
return in_file.read().strip()
@run_after('install')
def setup_smoke_test(self):
if not self.spec['cmake'].satisfies('@3.10:'):
tty.msg('Error tasmanian test: CMake 3.10 or higher is required')
return
install_tree(self.prefix.share.Tasmanian.testing,
join_path(self.install_test_root, 'testing'))
self.cmake_bin(set=True)
def test(self): def test(self):
# using the tests installed in <prefix>/share/Tasmanian/testing cmake_bin = self.cmake_bin(set=False)
cmake_dir = join_path(self.prefix, 'share', 'Tasmanian', 'testing')
with working_dir(self.test_suite.current_test_cache_dir, create=True): if not cmake_bin:
cmake(cmake_dir) tty.msg('Skipping tasmanian test: cmake_bin_path.txt not found')
make() return
make('test')
# using the tests copied from <prefix>/share/Tasmanian/testing
cmake_dir = self.test_suite.current_test_cache_dir.testing
if not self.run_test(cmake_bin,
options=[cmake_dir],
purpose='Generate the Makefile'):
tty.msg('Skipping tasmanian test: failed to generate Makefile')
return
if not self.run_test('make',
purpose='Build test software'):
tty.msg('Skipping tasmanian test: failed to build test')
return
if not self.run_test('make',
options=['test'],
purpose='Run test'):
tty.msg('Failed tasmanian test: failed to run test')