summaryrefslogtreecommitdiff
path: root/share/spack/qa/run-unit-tests
blob: 9cace0dfd66b6ee6e5f0c187d69c4e62a50cffb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env bash
#
# Description:
#     Runs Spack unit tests.
#
# Usage:
#     run-unit-tests [test ...]
#
# Options:
#     Optionally add one or more unit tests
#     to only run these tests.
#
# Notes:
#     Requires coverage, git, mercurial, and subversion.
#

QA_DIR="$(dirname "$0")"
SPACK_ROOT="$QA_DIR/../../.."

# Array of dependencies
deps=(
    coverage
    git
    hg
    svn
)

# Check for dependencies
"$QA_DIR/check_dependencies" "${deps[@]}" || exit 1

# Add Spack to the PATH.
export PATH="$SPACK_ROOT/bin:$PATH"

# Move to root directory of Spack
# Allows script to be run from anywhere
cd "$SPACK_ROOT"

# Run integration tests
# TODO: should these be separated into a different test suite?
source "$SPACK_ROOT/share/spack/setup-env.sh"
spack compilers
spack config get compilers

# Run unit tests with code coverage
if [[ "$TRAVIS_PYTHON_VERSION" == 2.7 ]]; then
    coverage run bin/spack install -v libdwarf
    coverage run bin/spack test "$@"
    coverage combine
else
    spack install -v libdwarf
    spack test "$@"
fi