~ubuntu-branches/debian/sid/ecryptfs-utils/sid

« back to all changes in this revision

Viewing changes to tests/userspace/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS), Dustin Kirkland and Martin Pitt, Fernando Seiti Furusato
  • Date: 2015-06-15 15:50:05 UTC
  • mfrom: (1.5.12)
  • Revision ID: package-import@ubuntu.com-20150615155005-vxvg3ezl7ibfdoes
Tags: 106-1
* New upstream release.
* Transition from libecryptfs0 to libecryptfs1 .
* Remove unused libgcrypt11-dev build dependency (closes: #764927).
* Remove bashism from the postinst of ecryptfs-utils .
* Add watch file.
* Put myself as the primary maintainer.
* Update Standards-Version to 3.9.6 .

[ Dustin Kirkland and Martin Pitt ]
* debian/ecryptfs-utils.postinst: LP: #953875
  - detect and clean up after nonexisting cryptswap devices

[ Fernando Seiti Furusato <ferseiti@br.ibm.com> ]
* Use autoreconf instead of autotools-dev (closes: #751989).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
AUTOMAKE_OPTIONS = subdir-objects
2
2
 
3
3
# Only place tests worth of 'make check' here. All other tests are noinst.
4
 
dist_check_SCRIPTS = verify-passphrase-sig.sh wrap-unwrap.sh v1-to-v2-wrapped-passphrase.sh
5
 
check_PROGRAMS = verify-passphrase-sig/test wrap-unwrap/test v1-to-v2-wrapped-passphrase/test
 
4
dist_check_SCRIPTS = lfs.sh verify-passphrase-sig.sh wrap-unwrap.sh v1-to-v2-wrapped-passphrase.sh
 
5
check_PROGRAMS = lfs/test verify-passphrase-sig/test wrap-unwrap/test v1-to-v2-wrapped-passphrase/test
6
6
 
7
 
dist_noinst_DATA = tests.rc
 
7
dist_noinst_DATA = tests.rc \
 
8
                   v1-to-v2-wrapped-passphrase/wp01 \
 
9
                   v1-to-v2-wrapped-passphrase/wp02 \
 
10
                   v1-to-v2-wrapped-passphrase/wp03 \
 
11
                   v1-to-v2-wrapped-passphrase/wp04 \
 
12
                   v1-to-v2-wrapped-passphrase/wp05
8
13
 
9
14
dist_noinst_SCRIPTS = $(dist_check_SCRIPTS)
10
15
 
12
17
noinst_PROGRAMS = $(check_PROGRAMS)
13
18
endif
14
19
 
 
20
lfs_test_SOURCES = lfs/test.c
 
21
 
15
22
verify_passphrase_sig_test_SOURCES = verify-passphrase-sig/test.c
16
23
verify_passphrase_sig_test_LDADD = $(top_builddir)/src/libecryptfs/libecryptfs.la
17
24
 
21
28
v1_to_v2_wrapped_passphrase_test_SOURCES = v1-to-v2-wrapped-passphrase/test.c
22
29
v1_to_v2_wrapped_passphrase_test_LDADD = $(top_builddir)/src/libecryptfs/libecryptfs.la
23
30
 
24
 
TESTS = verify-passphrase-sig.sh wrap-unwrap.sh v1-to-v2-wrapped-passphrase.sh
 
31
TESTS = lfs.sh verify-passphrase-sig.sh wrap-unwrap.sh v1-to-v2-wrapped-passphrase.sh
25
32