]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/netbsd-tests/share/mk/t_prog.sh
MFC r305358,r305449,r305451,r306367,r306397,r309474:
[FreeBSD/stable/10.git] / contrib / netbsd-tests / share / mk / t_prog.sh
1 # Copyright 2012 Google Inc.
2 # All rights reserved.
3 #
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
6 # met:
7 #
8 # * Redistributions of source code must retain the above copyright
9 #   notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above copyright
11 #   notice, this list of conditions and the following disclaimer in the
12 #   documentation and/or other materials provided with the distribution.
13 # * Neither the name of Google Inc. nor the names of its contributors
14 #   may be used to endorse or promote products derived from this software
15 #   without specific prior written permission.
16 #
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29 atf_test_case defaults__build_and_install
30 defaults__build_and_install_head() {
31         atf_set "require.progs" "/usr/bin/mandoc"
32 }
33 defaults__build_and_install_body() {
34         if [ ! -e /usr/bin/gcc -a -e /usr/bin/clang ]; then
35                 export HAVE_LLVM=yes
36         fi
37
38         cat >hello.c <<EOF
39 #include <stdio.h>
40 int main(void) { printf("Hello, test!\n"); return 0; }
41 EOF
42         cat >hello.1 <<EOF
43 Manpage of hello(1).
44 EOF
45
46         cat >Makefile <<EOF
47 BINDIR = /the/bin/dir
48 PROG = hello
49 .include <bsd.prog.mk>
50 EOF
51
52         atf_check -o ignore make
53         mkdir -p root/the/bin/dir
54         mkdir -p root/usr/share/man/man1
55         mkdir -p root/usr/share/man/html1
56         create_make_conf mk.conf owngrp DESTDIR="$(pwd)/root"
57         atf_check -o ignore make install
58
59         atf_check -o inline:'Hello, test!\n' ./root/the/bin/dir/hello
60         atf_check -o inline:'Manpage of hello(1).\n' \
61             cat root/usr/share/man/man1/hello.1
62         atf_check -o match:'Manpage of hello' \
63             cat root/usr/share/man/html1/hello.html
64 }
65
66 atf_test_case without_man__build_and_install
67 without_man__build_and_install_body() {
68         if [ ! -e /usr/bin/gcc -a -e /usr/bin/clang ]; then
69                 export HAVE_LLVM=yes
70         fi
71
72         cat >hello.c <<EOF
73 #include <stdio.h>
74 int main(void) { printf("Hello, test!\n"); return 0; }
75 EOF
76
77         cat >Makefile <<EOF
78 BINDIR = /the/bin/dir
79 PROG = hello
80 MAN =
81 .include <bsd.prog.mk>
82 EOF
83
84         atf_check -o ignore make
85         mkdir -p root/the/bin/dir
86         create_make_conf mk.conf owngrp DESTDIR="$(pwd)/root"
87         atf_check -o ignore make install
88
89         atf_check -o inline:'Hello, test!\n' ./root/the/bin/dir/hello
90 }
91
92 atf_init_test_cases() {
93         atf_add_test_case defaults__build_and_install
94         atf_add_test_case without_man__build_and_install
95 }