tools/llvm: Do not build with symbols
[minix3.git] / external / bsd / kyua-atf-compat / dist / helpers.sh
blobe47b10fb25374e6de2ffaacde855cc548926a3a6
1 #! __ATF_SH__
2 # Copyright 2012 Google Inc.
3 # All rights reserved.
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are
7 # met:
9 # * Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer.
11 # * Redistributions in binary form must reproduce the above copyright
12 # notice, this list of conditions and the following disclaimer in the
13 # documentation and/or other materials provided with the distribution.
14 # * Neither the name of Google Inc. nor the names of its contributors
15 # may be used to endorse or promote products derived from this software
16 # without specific prior written permission.
18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 # Path outside of this test program's work directory to which we can write
32 # temporary files for inspection by the caller.
33 CONTROL_DIR='@CONTROL_DIR@'
36 # This is set by the test programs when copying the helpers into the work
37 # directory to specify which test cases to enable.
38 ENABLED_TESTS='@ENABLED_TESTS@'
41 atf_test_case fail
42 fail_body() {
43 atf_fail "On purpose"
47 atf_test_case pass
48 pass_body() {
53 atf_test_case skip
54 skip_body() {
55 atf_skip "Skipped reason"
59 atf_test_case config
60 config_body() {
61 local outfile="${CONTROL_DIR}/config.out"
63 rm "${outfile}"
64 touch "${outfile}"
65 for var in unprivileged-user var1 var2 var3; do
66 if atf_config_has "${var}"; then
67 echo "${var} = $(atf_config_get "${var}")" >>"${outfile}"
69 done
73 atf_init_test_cases() {
74 for test_name in ${ENABLED_TESTS}; do
75 atf_add_test_case "${test_name}"
76 done