summaryrefslogtreecommitdiff
path: root/Build/source/libs/zziplib/zziplib-src/test/Makefile.am
blob: 9b3c08a76bf9bff1fc5c69febb1b0e7dbb3d11e8 (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
75
76
77
78
AUTOMAKE_OPTIONS = 1.4 foreign
AUTOTOOL_VERSION=autoconf-2.52 automake-1.5 libtool-1.4.2
DEFAULT_INCLUDES = # nothing - no default of -I. -I$(srcdir)
DEFS = @DEFS@ -I$(top_builddir) -I$(top_srcdir) # also for automake 1.4

EXTRA_DIST = test.zip test1.zip zziptests.py
DISTCLEANFILES = test*.dat test2.zip test3.zip

zzcat     = ../bins/zzcat$(EXEEXT)
zzdir     = ../bins/zzdir$(EXEEXT)
zziptest  = ../bins/zziptest$(EXEEXT)
zzxorcat  = ../bins/zzxorcat$(EXEEXT)
zzxordir  = ../bins/zzxordir$(EXEEXT)
zzxorcopy = ../bins/zzxorcopy$(EXEEXT)

$(zzcat) $(zzdir) $(zziptest) $(zzxorcat) $(zzxordir) $(xorcopy) : \
        @top_srcdir@/bins/*.c @top_srcdir@/zzip/*.c
	(cd ../bins && $(MAKE))

# -------------------------------------------------------------------
NULL=/dev/null
README = $(top_srcdir)/README
testdatadir = $(top_builddir)/testdata.d

testzip testzips : test.zip test1.zip test2.zip test3.zip 

test.zip tmp/../test.zip : $(README)
	- test -d tmp || mkdir tmp
	- $(MAKE) test0.zip && mv test0.zip $@
	- test -s $@ || cp $(srcdir)/test.zip $@

# -------------------------------------------------------------------

sfxtests = @ZIPTESTS@ check-sfx
newtests = @ZIPTESTS@ check-tests

check-local: check-readme $(sfxtests) $(newtests)

check-tests: tests
tests:
	@ test -f zziptests.py || cp -s -v $(srcdir)/zziptests.py .
	python zziptests.py -v

check-readme : $(zzcat)  test.zip
	@ test -f test.zip || $(MAKE) tmp/../test.zip 
	test -s test.zip
	@ echo :$@: checking $(zzcat) test/README 
	@ $(zzcat) test/README >test.out
	@ if diff test.out $(README) >$(NULL) \
	; then rm test.out ; echo check OK ; true \
	; else rm test.out ; echo check FAIL ; false ; fi

# -------------------------------------------------------------------

noinst_PROGRAMS = zzipself zzipsetstub

zzipself_LDFLAGS = @ZZIPLIB_LDFLAGS@
zzipself_LDADD = ../zzip/libzzip.la @RESOLVES@ -lz

../zzip/libzzip.la : @top_srcdir@/zzip/*.c
	(cd ../zzip && $(MAKE) `basename $@`)

zzshowme$(EXEEXT) : zzipself$(EXEEXT) zzipsetstub$(EXEEXT)
	$(MKZIP) -0 -j $@ .libs/zzipself$(EXEEXT)
	$(MKZIP) -9 -j $@ $(README)
	- test -s $@ || cp test2.zip $@
	test ! -f $@.zip || mv $@.zip $@
	./zzipsetstub $@ .libs/zzipself$(EXEEXT)
	- chmod +x $@

check-sfx : zzshowme$(EXEEXT)
	echo :$@: "./zzshowme readme >readme.out 2>readme.err" 
	export LD_LIBRARY_PATH="../zzip/.libs:$$LD_LIBRARY_PATH" \
	; ./zzshowme readme >readme.out 2>readme.err ; true
	@ echo 'diff readme.out $(README) || grep "libzzip-" readme.err' \
	; if test -s readme.out ; then diff readme.out $(README) \
        ; else grep "libzzip-" readme.err || echo "readme.out is empty!" ; fi
	rm readme.out readme.err