1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-03 05:18:29 +03:00

Rudimentary support for running testsuite in a builddir != srcdir situation.

This commit is contained in:
Petr Rockai 2009-11-02 15:16:21 +00:00
parent a42efe6bdf
commit 1ace1b5ddf

View File

@ -26,15 +26,15 @@ abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
all: init.sh
./bin/harness $(T)
./bin/harness t-*.sh
bin/not: .bin-dir-stamp not.c
$(CC) -o bin/not not.c
bin/not: $(srcdir)/not.c .bin-dir-stamp
$(CC) -o bin/not $<
bin/harness: .bin-dir-stamp harness.c
$(CC) -o bin/harness harness.c
bin/harness: $(srcdir)/harness.c .bin-dir-stamp
$(CC) -o bin/harness $<
init.sh: Makefile.in .bin-dir-stamp bin/not bin/harness
init.sh: $(srcdir)/Makefile.in $(srcdir)/test-utils.sh .bin-dir-stamp bin/not bin/harness $(T)
rm -f $@-t $@
echo 'top_srcdir=$(top_srcdir)' >> $@-t
echo 'abs_top_builddir=$(abs_top_builddir)' >> $@-t
@ -46,11 +46,14 @@ init.sh: Makefile.in .bin-dir-stamp bin/not bin/harness
echo 'export PATH' >> $@-t
chmod a-w $@-t
mv $@-t $@
-cp $(srcdir)/test-utils.sh .
-cp $(srcdir)/test-lib.sh .
-cp $(T) .
# Shell quote;
SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
T = $(wildcard t-*.sh)
T = $(wildcard $(srcdir)/t-*.sh)
ifeq ("@APPLIB@", "yes")
T += lvm2app.sh
@ -62,13 +65,13 @@ endif
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
$(T): init.sh
./bin/harness $@
#$(T): init.sh
# ./bin/harness $@
.bin-dir-stamp: lvm-wrapper
rm -rf bin
mkdir bin
for i in lvm $$(cat $(top_srcdir)/tools/.commands); do \
for i in lvm $$(cat ../tools/.commands); do \
ln -s ../lvm-wrapper bin/$$i; \
done
ln -s "$(abs_top_builddir)/tools/dmsetup" bin/dmsetup