Users can add test() methods to their packages to run smoke tests on
installations with the new `spack test` command (the old `spack test` is
now `spack unit-test`). spack test is environment-aware, so you can
`spack install` an environment and then run `spack test run` to run smoke
tests on all of its packages. Historical test logs can be perused with
`spack test results`. Generic smoke tests for MPI implementations, C,
C++, and Fortran compilers as well as specific smoke tests for 18
packages.
Inside the test method, individual tests can be run separately (and
continue to run best-effort after a test failure) using the `run_test`
method. The `run_test` method encapsulates finding test executables,
running and checking return codes, checking output, and error handling.
This handles the following trickier aspects of testing with direct
support in Spack's package API:
- [x] Caching source or intermediate build files at build time for
use at test time.
- [x] Test dependencies,
- [x] packages that require a compiler for testing (such as library only
packages).
See the packaging guide for more details on using Spack testing support.
Included is support for package.py files for virtual packages. This does
not change the Spack interface, but is a major change in internals.
Co-authored-by: Tamara Dahlgren <dahlgren1@llnl.gov>
Co-authored-by: wspear <wjspear@gmail.com>
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
99 lines
3.3 KiB
Python
99 lines
3.3 KiB
Python
# Copyright 2013-2020 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)
|
|
|
|
import argparse
|
|
import os
|
|
import shutil
|
|
|
|
import llnl.util.tty as tty
|
|
|
|
import spack.caches
|
|
import spack.cmd.test
|
|
import spack.cmd.common.arguments as arguments
|
|
import spack.repo
|
|
import spack.stage
|
|
import spack.config
|
|
from spack.paths import lib_path, var_path
|
|
|
|
|
|
description = "remove temporary build files and/or downloaded archives"
|
|
section = "build"
|
|
level = "long"
|
|
|
|
|
|
class AllClean(argparse.Action):
|
|
"""Activates flags -s -d -f -m and -p simultaneously"""
|
|
def __call__(self, parser, namespace, values, option_string=None):
|
|
parser.parse_args(['-sdfmp'], namespace=namespace)
|
|
|
|
|
|
def setup_parser(subparser):
|
|
subparser.add_argument(
|
|
'-s', '--stage', action='store_true',
|
|
help="remove all temporary build stages (default)")
|
|
subparser.add_argument(
|
|
'-d', '--downloads', action='store_true',
|
|
help="remove cached downloads")
|
|
subparser.add_argument(
|
|
'-f', '--failures', action='store_true',
|
|
help="force removal of all install failure tracking markers")
|
|
subparser.add_argument(
|
|
'-m', '--misc-cache', action='store_true',
|
|
help="remove long-lived caches, like the virtual package index")
|
|
subparser.add_argument(
|
|
'-p', '--python-cache', action='store_true',
|
|
help="remove .pyc, .pyo files and __pycache__ folders")
|
|
subparser.add_argument(
|
|
'-a', '--all', action=AllClean, help="equivalent to -sdfmp", nargs=0
|
|
)
|
|
arguments.add_common_arguments(subparser, ['specs'])
|
|
|
|
|
|
def clean(parser, args):
|
|
# If nothing was set, activate the default
|
|
if not any([args.specs, args.stage, args.downloads, args.failures,
|
|
args.misc_cache, args.python_cache]):
|
|
args.stage = True
|
|
|
|
# Then do the cleaning falling through the cases
|
|
if args.specs:
|
|
specs = spack.cmd.parse_specs(args.specs, concretize=True)
|
|
for spec in specs:
|
|
msg = 'Cleaning build stage [{0}]'
|
|
tty.msg(msg.format(spec.short_spec))
|
|
package = spack.repo.get(spec)
|
|
package.do_clean()
|
|
|
|
if args.stage:
|
|
tty.msg('Removing all temporary build stages')
|
|
spack.stage.purge()
|
|
|
|
if args.downloads:
|
|
tty.msg('Removing cached downloads')
|
|
spack.caches.fetch_cache.destroy()
|
|
|
|
if args.failures:
|
|
tty.msg('Removing install failure marks')
|
|
spack.installer.clear_failures()
|
|
|
|
if args.misc_cache:
|
|
tty.msg('Removing cached information on repositories')
|
|
spack.caches.misc_cache.destroy()
|
|
|
|
if args.python_cache:
|
|
tty.msg('Removing python cache files')
|
|
for directory in [lib_path, var_path]:
|
|
for root, dirs, files in os.walk(directory):
|
|
for f in files:
|
|
if f.endswith('.pyc') or f.endswith('.pyo'):
|
|
fname = os.path.join(root, f)
|
|
tty.debug('Removing {0}'.format(fname))
|
|
os.remove(fname)
|
|
for d in dirs:
|
|
if d == '__pycache__':
|
|
dname = os.path.join(root, d)
|
|
tty.debug('Removing {0}'.format(dname))
|
|
shutil.rmtree(dname)
|