blob: d1682ac196c407d17a7c4d973a918bdb94598004 (
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
|
AUTOMAKE_OPTIONS = dejagnu
export DEJAGNU
# Programs that are expected across the board.
DEJATOOL =
if LINUX
# These should be in defined in 'across the board' scope, but are
# temporarily disabled on other than linux systems, see commit
# 3d807ae853b8b4264da156065b34f1447658a8ba
DEJATOOL += \
kill \
pmap \
slabtop \
sysctl
DEJATOOL += \
free \
pgrep \
pkill \
ps \
pwdx \
uptime \
vmstat \
w
endif
EXTRA_DIST = \
config/unix.exp \
global-conf.exp \
free.test/free.exp \
kill.test/kill.exp \
pgrep.test/pgrep.exp \
pkill.test/pkill.exp \
pmap.test/pmap.exp \
ps.test/ps_output.exp \
ps.test/ps_personality.exp \
pwdx.test/pwdx.exp \
slabtop.test/slabtop.exp \
sysctl.test/sysctl_read.exp \
uptime.test/uptime.exp \
vmstat.test/vmstat.exp \
w.test/w.exp
|