1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 18:55:19 +03:00

Only build the required bits under api/ on make check.

This commit is contained in:
Petr Rockai 2010-12-12 21:08:00 +00:00
parent 6ba68e2a84
commit 4f8eeb2a06
2 changed files with 6 additions and 4 deletions

View File

@ -42,19 +42,19 @@ dm_udev_synchronisation = 1
endif
all check: init.sh
make -C api
make -C api tests
@echo Testing with locking_type 1
VERBOSE=$(VERBOSE) ./bin/harness $(RUN_BASE)
@echo Testing with locking_type 3
VERBOSE=$(VERBOSE) LVM_TEST_LOCKING=3 ./bin/harness $(RUN_BASE)
check_cluster: init.sh
make -C api
make -C api tests
@echo Testing with locking_type 3
VERBOSE=$(VERBOSE) LVM_TEST_LOCKING=3 ./bin/harness $(RUN_BASE)
check_local: init.sh
make -C api
make -C api tests
@echo Testing with locking_type 1
VERBOSE=$(VERBOSE) LVM_TEST_LOCKING=1 ./bin/harness $(RUN_BASE)

View File

@ -44,7 +44,9 @@ test_OBJECTS = $(test_SOURCES:.c=.o)
wrapper_OBJECTS = $(wrapper_SOURCES:.c=.o)
OBJECTS = $(test_OBJECTS)
all: $(UNIT) test
all: tests test
tests: $(UNIT)
test: $(test_OBJECTS) $(DEPLIBS)
$(CC) -o test $(test_OBJECTS) $(CFLAGS) $(LDFLAGS) $(LVMLIBS) $(LIBS) $(READLINE_LIBS)