File: testsuite.at

package info (click to toggle)
rush 2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,276 kB
  • sloc: ansic: 46,428; sh: 18,253; yacc: 881; lex: 760; makefile: 284; awk: 87; lisp: 56; sed: 24
file content (152 lines) | stat: -rw-r--r-- 3,781 bytes parent folder | download
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# This file is part of GNU Rush.
# Copyright (C) 2008-2024 Sergey Poznyakoff
#
# GNU Rush is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Rush is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Rush.  If not, see <http://www.gnu.org/licenses/>.

m4_version_prereq([2.52g])

m4_define([AT_SKIP_TEST],[exit 77])

dnl m4_run_rush([KW], [CMD],[EC],[STDOUT],[STDERR],...)
m4_define([m4_run_rush],[m4_ifval([$2],[dnl
echo "; m4_bpatsubst($2,",\\")"
echo "; m4_bpatsubst($2,",\\")" >&2
m4_ifset([RUSH_ENVIRON],[env RUSH_ENVIRON $RUSHDIR/])rush -C none -D$1 dnl
m4_if([$2],[interactive],[-i],[-c "m4_bpatsubst($2,",\\")"]) test.conf
echo "; $?"
$0([$1],m4_shiftn(5, $@))])])

dnl m4_fmt_out([CMD],[EC],[STDOUT],[STDERR],...)
m4_define([m4_fmt_out],[m4_ifval([$1],[dnl
; $1
$3[]dnl
; $2
$0(m4_shift(m4_shift3($@)))])])

dnl m4_fmt_err([CMD],[EC],[STDOUT],[STDERR],...)
m4_define([m4_fmt_err],[m4_ifval([$1],[dnl
; $1
$4[]dnl
$0(m4_shift(m4_shift3($@)))])])

dnl AT_RUSH_TEST([CONFIG],[KW], [CMD],[EC],[STDOUT],[STDERR])
m4_define([AT_RUSH_TEST],[
myvars
AT_CHECK_UNQUOTED([
cat > test.conf <<EOT
[$1]
EOT
m4_run_rush(m4_shift($@))
],
[0],
[m4_fmt_out(m4_shift2($@))],
[m4_fmt_err(m4_shift2($@))])])
#
AT_INIT

AT_TESTED([rush])

m4_include([lex.at])

AT_BANNER([Base])
m4_include([null.at])
m4_include([qstr.at])
m4_include([setvar.at])
m4_include([unsetvar.at])
m4_include([undef.at])

AT_BANNER([Simple Conditions])
m4_include([argc.at])
m4_include([command.at])
m4_include([matcharg.at])
m4_include([matchprog.at])
m4_include([regexp.at])
m4_include([uid.at])
m4_include([user.at])
m4_include([in.at])
m4_include([gid.at])
m4_include([group.at])
m4_include([fstest.at])

AT_BANNER([Complex Conditions])
m4_include([and.at])
m4_include([or.at])
m4_include([compound.at])

AT_BANNER([Transformations])
m4_include([set.at])
m4_include([delete.at])
m4_include([transform.at])
m4_include([map.at])
m4_include([insert.at])
m4_include([remopt.at])

AT_BANNER([Rule attributes])
m4_include([umask.at])
m4_include([newgrp.at])
m4_include([chdir.at])
m4_include([interactive.at])

AT_BANNER([Environment])
m4_include([clrenv.at])
m4_include([unsetenv.at])
m4_include([keepenv.at])
m4_include([setenv.at])
m4_include([evalenv.at])

AT_BANNER([Features])
m4_include([backref.at])

AT_BANNER([Flow control])
m4_include([fallthrough.at])
m4_include([error.at])

AT_BANNER([Includes])
m4_include([inc00.at])
m4_include([inc01.at])

AT_BANNER([Legacy configuration])

dnl AT_BANNER([Conditionals])
m4_include([legacy/argc.at])
m4_include([legacy/command.at])
m4_include([legacy/match.at])
m4_include([legacy/matchprog.at])
m4_include([legacy/uid.at])
m4_include([legacy/gid.at])

dnl AT_BANNER([Transformations])
m4_include([legacy/set.at])
m4_include([legacy/delete.at])
m4_include([legacy/transform.at])
m4_include([legacy/map.at])

dnl AT_BANNER([Actions])
m4_include([legacy/umask.at])
m4_include([legacy/newgrp.at])
# FIXME: No way to test chroot & limits
m4_include([legacy/chdir.at])
m4_include([legacy/env.at])

dnl AT_BANNER([Features])
m4_include([legacy/interactive.at])
m4_include([legacy/fallthrough.at])
dnl FIXME:
dnl m4_include([legacy/fork.at])
dnl m4_include([legacy/acct.at])
dnl m4_include([legacy/notification.at])
m4_include([legacy/error.at])
m4_include([legacy/backref.at])
m4_include([legacy/setvar.at])
m4_include([legacy/unsetvar.at])