diff options
author | Ted Gould <ted@gould.cx> | 2012-09-19 16:59:53 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2012-09-19 16:59:53 -0500 |
commit | 3d176dc378174863d78ed928d8deaef981cc6c00 (patch) | |
tree | ea145b4ea1a14ab3fd17899f8835c80260a69e7b /tests/Makefile.am | |
parent | 2c7ecf16c1df5de36e1dad477489a5d30133f1b0 (diff) | |
download | libpam-freerdp2-3d176dc378174863d78ed928d8deaef981cc6c00.tar.gz libpam-freerdp2-3d176dc378174863d78ed928d8deaef981cc6c00.tar.bz2 libpam-freerdp2-3d176dc378174863d78ed928d8deaef981cc6c00.zip |
Adding a small auth check utility
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 4e51e62..b7c39f0 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -3,9 +3,11 @@ DISTCLEANFILES = EXTRA_DIST = TESTS = \ - test-freerdpclient-wrapper + test-freerdpclient-wrapper -check_PROGRAMS = $(TESTS) +check_PROGRAMS = \ + test-freerdp-auth \ + $(TESTS) AM_CPPFLAGS = $(GTEST_CPPFLAGS) \ $(REMOTE_APPS_MANAGER_CFLAGS) \ @@ -37,6 +39,8 @@ libgtest_a_CXXFLAGS = \ # Wrapper ########################## +test_freerdp_wrapper: test-freerdp-auth + test_freerdpclient_wrapper_SOURCES = \ mock_pam.c mock_pam.h \ mock_guest.c mock_guest.h \ @@ -53,3 +57,10 @@ test_freerdpclient_wrapper_CXXFLAGS = \ test_freerdpclient_wrapper_LDFLAGS = \ -pthread +########################## +# Auth tool +########################## + +test_freerdp_auth_SOURCES = \ + test-freerdp-auth.c + |