summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/trivial-smoke-test/package.py
blob: 90f39bb9ae10d5bdb9d7e4634eb74916638e813f (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
# Copyright 2013-2022 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)

from spack import *


class TrivialSmokeTest(Package):
    """This package is a stub with trivial smoke test features."""
    homepage = "http://www.example.com/trivial_test"
    url      = "http://www.unit-test-should-replace-this-url/trivial_test-1.0.tar.gz"

    version('1.0', '0123456789abcdef0123456789abcdef')

    test_source_filename = 'cached_file.in'

    @run_before('install')
    def create_extra_test_source(self):
        mkdirp(self.install_test_root)
        touch(join_path(self.install_test_root, self.test_source_filename))

    @run_after('install')
    def copy_test_sources(self):
        self.cache_extra_test_sources([self.test_source_filename])