minix/test/blocktest/Makefile
David van Moolenbroek 38f7b96048 blocktest: prepare to be run as part of tests
- fail SEF initialization if any of the subtests failed, so that the
  party invoking the "service up" can tell whether the test succeeded;
- add "nocontig" option, because VM isn't particularly good at
  allocating contiguous memory;
- add "silent" option, because it floods the console otherwise;
- allow the device size to be smaller than the maximum transfer size;
- install files to installed test directory.

Change-Id: I45c818f817c11d90c5f94ae26a2fc49e36e6761e
2014-03-01 09:04:53 +01:00

16 lines
321 B
Makefile

# Makefile for the Block Device Driver Test driver (blocktest)
PROG= blocktest
SRCS= blocktest.c
FILES= system.conf support.sh test.sh README
DPADD+= ${LIBSYS}
LDADD+= -lsys
MAN=
BINDIR?= /usr/tests/minix-posix/blocktest
FILESDIR?= /usr/tests/minix-posix/blocktest
.include "Makefile.inc"
.include <minix.service.mk>