File: disable_failing_test.patch

package info (click to toggle)
libgssapi-perl 0.28-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 420 kB
  • sloc: perl: 758; makefile: 7
file content (18 lines) | stat: -rw-r--r-- 693 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: disable test requiring a working kerberos setup
 For a yet unknown reason the check for the existence of such a setup fails
 with recent versions of MIT Kerberos (see RT#73293), so we just skip the tests
 unconditionally.
Author: Florian Schlichting <fschlich@ZEDAT.FU-Berlin.DE>
Forwarded: not-needed

--- a/t/inquire_cred.t
+++ b/t/inquire_cred.t
@@ -29,6 +29,8 @@
 };
 
 SKIP: {
+    skip('This test requires a working kerberos setup', 6);
+
     if ( $status->major != GSS_S_COMPLETE ) {
         diag( "\n\nNo error: acquire_cred() failed, maybe because you have to run kinit first.\n",
               "Errormessage from your GSSAPI-implementation is: \n\n" . qq{"$status"},