~ubuntu-branches/ubuntu/trusty/policykit-1/trusty

« back to all changes in this revision

Viewing changes to test/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2012-01-06 12:28:54 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20120106122854-ib9s0ej8akqiy0lb
Tags: 0.104-1
* New upstream release.
  - Add support for netgroups. (LP: #724052)
* debian/rules: Disable systemd support, continue to work with ConsokeKit.
* 05_revert-admin-identities-unix-group-wheel.patch: Refresh to apply
  cleanly.
* debian/libpolkit-gobject-1-0.symbols: Add new symbols from this new
  release.
* debian/rules: Do not let test failures fail the build. The new test suite
  also runs a test against the system D-BUS/ConsoleKit, which can't work on
  buildds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
SUBDIRS = mocklibc . polkit polkitbackend
 
3
AM_CFLAGS = $(GLIB_CFLAGS)
 
4
 
 
5
check_LTLIBRARIES = libpolkit-test-helper.la
 
6
libpolkit_test_helper_la_SOURCES = polkittesthelper.c polkittesthelper.h
 
7
libpolkit_test_helper_la_LIBADD = $(GLIB_LIBS)
 
8
 
 
9
EXTRA_DIST = data
 
10
 
 
11
# Use mocklibc to override NSS services for tests
 
12
export MOCK_PASSWD   := $(abs_top_srcdir)/test/data/etc/passwd
 
13
export MOCK_GROUP    := $(abs_top_srcdir)/test/data/etc/group
 
14
export MOCK_NETGROUP := $(abs_top_srcdir)/test/data/etc/netgroup
 
15
export TESTS_ENVIRONMENT := $(abs_top_builddir)/test/mocklibc/bin/mocklibc
 
16
 
 
17
# Include path to mock config files
 
18
export POLKIT_TEST_DATA := $(abs_top_srcdir)/test/data
 
19
 
 
20
 
 
21
clean-local :
 
22
        rm -f *~
 
23
 
 
24
 
 
25
# Never install anything in this dir (specifically MockLibc)
 
26
install:; @:
 
27
install-exec:; @:
 
28
install-data:; @:
 
29
uninstall:; @:
 
30