diff options
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/qa/run-bootstrap-tests | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/share/spack/qa/run-bootstrap-tests b/share/spack/qa/run-bootstrap-tests new file mode 100755 index 0000000000..346122c529 --- /dev/null +++ b/share/spack/qa/run-bootstrap-tests @@ -0,0 +1,37 @@ +#!/bin/bash -e +# +# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +# +# Description: +# Checks that Spack shell integration with modules works correctly. +# +# Usage: +# run-bootstrap-tests +# +. "$(dirname $0)/setup.sh" +check_dependencies ${coverage} git hg svn + +# Fetch the sources in a mirror, and add it to Spack +mkdir -p ~/.mirror +bin/spack mirror add travis ~/.mirror +bin/spack mirror create -D -d ~/.mirror environment-modules~X + + +# Move to root directory of Spack +# Allows script to be run from anywhere +cd "$SPACK_ROOT" + +# Print compiler information +spack config get compilers + +# Run some build smoke tests, potentially with code coverage +${coverage_run} bin/spack bootstrap + +# Check module integration +. "share/spack/setup-env.sh" +module av || exit 1 +spack load tcl || exit 1 |