summaryrefslogtreecommitdiff
path: root/regress/usr.bin/lastcomm/Makefile
blob: f04a12d73fd80e9d71ecc5e84b1c895c21784b5d (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# $OpenBSD: Makefile,v 1.4 2018/02/27 18:50:00 bluhm Exp $

# Start with a clean /var/account/acct accounting file and turn on
# process accounting with accton(8).  Each test executes a command
# with a unique name and checks the flags in the lastcomm(1) output.
# Run tests with fork, su, core, xsig, pledge, trap accounting.

PROG=		crash
CLEANFILES=	regress-* stamp-*

.if make (regress) || make (all)
.BEGIN:
	@echo
	rm -f stamp-rotate
.endif

# Rotate accouting files and keep statistics, from /etc/daily.
stamp-rotate:
	@echo '\n======== $@ ========'
	${SUDO} touch /var/account/acct
	-${SUDO} mv -f /var/account/acct.2 /var/account/acct.3
	-${SUDO} mv -f /var/account/acct.1 /var/account/acct.2
	-${SUDO} mv -f /var/account/acct.0 /var/account/acct.1
	${SUDO} cp -f /var/account/acct /var/account/acct.0
	${SUDO} sa -sq
	${SUDO} accton /var/account/acct
	date >$@

TARGETS+=	fork
run-regress-fork:
	@echo '\n======== $@ ========'
	# Create shell program, fork a sub shell, and check the -F flag.
	cp -f /bin/sh regress-fork
	./regress-fork -c '( : ) &'
	lastcomm regress-fork | grep -q ' -F '

TARGETS+=	core
run-regress-core:
	@echo '\n======== $@ ========'
	# Create shell program, abort sub shell, and check the -DX flag.
	cp -f /bin/sh regress-core
	rm -f regress-core.core
	ulimit -c 100000; ./regress-core -c '( : ) & kill -SEGV $$!; wait'
	lastcomm regress-core | grep -q ' -FDX '

TARGETS+=	xsig
run-regress-xsig:
	@echo '\n======== $@ ========'
	# Create shell program, kill sub shell, and check the -X flag.
	cp -f /bin/sh regress-xsig
	./regress-xsig -c '( : ) & kill -KILL $$!; wait'
	lastcomm regress-xsig | grep -q ' -FX '

TARGETS+=	pledge
run-regress-pledge:
	@echo '\n======== $@ ========'
	# Create perl program, violate pledge, and check the -P flag.
	cp -f /usr/bin/perl regress-pledge
	ulimit -c 0; ! ./regress-pledge -MOpenBSD::Pledge -e\
	    'pledge("stdio") or die $$!; chdir("/")'
	lastcomm regress-pledge | grep -q ' -XP '

TARGETS+=	trap
run-regress-trap: ${PROG}
	@echo '\n======== $@ ========'
	# Build crashing program, run SIGSEGV handler, and check the -T flag.
	cp -f ${PROG} regress-trap
	./regress-trap
	lastcomm regress-trap | grep -q ' -T '

REGRESS_TARGETS=	${TARGETS:S/^/run-regress-/}
${REGRESS_TARGETS}:	stamp-rotate

.include <bsd.regress.mk>