xref: /openbsd-src/regress/libexec/ld.so/ldd/Makefile (revision f90ef06a3045119dcc88b72d8b98ca60e3c00d5a)
1# $OpenBSD: Makefile,v 1.2 2023/08/13 18:34:49 anton Exp $
2
3REGRESS_TARGETS+=	empty
4REGRESS_TARGETS+=	short
5
6CLEANFILES+=	*.in *.out
7
8empty:
9	: >$@.in
10	ldd $@.in 2>&1 | tee $@.out | grep -q 'incomplete ELF header'
11
12short:
13	dd if=/usr/bin/ldd of=$@.in count=128 bs=1 status=none
14	ldd $@.in 2>&1 | tee $@.out | grep -q 'incomplete program header'
15
16.include <bsd.regress.mk>
17