You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2011/07/26 01:40:36 UTC

svn commit: r1150958 - /subversion/trunk/subversion/tests/libsvn_subr/auth-test.c

Author: stsp
Date: Mon Jul 25 23:40:35 2011
New Revision: 1150958

URL: http://svn.apache.org/viewvc?rev=1150958&view=rev
Log:
* subversion/tests/libsvn_subr/auth-test.c
  (test_platform_specific_auth_providers): Now that gpg-agent support is
   linked into libsvn_subr, this test will find it if SVN_HAVE_GPG_AGENT
   is defined. Adjust test expectations accordingly.

Modified:
    subversion/trunk/subversion/tests/libsvn_subr/auth-test.c

Modified: subversion/trunk/subversion/tests/libsvn_subr/auth-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_subr/auth-test.c?rev=1150958&r1=1150957&r2=1150958&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_subr/auth-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_subr/auth-test.c Mon Jul 25 23:40:35 2011
@@ -54,6 +54,9 @@ test_platform_specific_auth_providers(ap
 #ifdef SVN_HAVE_KWALLET
   number_of_providers += 2;
 #endif
+#ifdef SVN_HAVE_GPG_AGENT
+  number_of_providers += 1;
+#endif
 #ifdef SVN_HAVE_KEYCHAIN_SERVICES
   number_of_providers += 2;
 #endif