summaryrefslogtreecommitdiffstats
path: root/test/nbb-automake.at
blob: bf9218d11a0b31b210a63afa092d07a264b2fa16 (plain)
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
53
dnl ===================================================================

AT_COPYRIGHT([Copyright (C) 2008 Hans Ulrich Niedermann])
AT_TESTED([nbb])
AT_TESTED([automake autoconf autom4te aclocal autoheader])

dnl ===================================================================

AT_SETUP([nbb automake: init])
AT_KEYWORDS([nbb automake init])
AT_WRAP_GIT_AM([dnl
AT_CHECK([cd test.dir && AT_NBB init], [0], [ignore], [ignore])
])
AT_CLEANUP()

dnl ===================================================================

AT_SETUP([nbb automake: configure])
AT_KEYWORDS([nbb automake configure])
AT_WRAP_GIT_AM([dnl
AT_CHECK([cd test.dir && AT_NBB configure], [0], [ignore], [ignore])
])
AT_CLEANUP()

dnl ===================================================================

AT_SETUP([nbb automake: build])
AT_KEYWORDS([nbb automake build])
AT_WRAP_GIT_AM([dnl
AT_CHECK([cd test.dir && AT_NBB build], [0], [ignore], [ignore])
])
AT_CLEANUP()

dnl ===================================================================

AT_SETUP([nbb automake: install])
AT_KEYWORDS([nbb automake install])
AT_WRAP_GIT_AM([dnl
AT_CHECK([cd test.dir && AT_NBB install], [0], [ignore], [ignore])
])
AT_CLEANUP()

dnl ===================================================================

AT_SETUP([nbb automake: make distcheck])
AT_KEYWORDS([nbb automake make distcheck])
AT_WRAP_GIT_AM([dl
AT_CHECK([cd test.dir && AT_NBB configure], [0], [ignore], [ignore])
AT_CHECK([cd test.dir && AT_NBB make distcheck], [0], [ignore], [ignore])
])
AT_CLEANUP()

dnl ===================================================================