File: skip-upstream-git-tests.diff

package info (click to toggle)
perl 5.20.2-3%2Bdeb8u11
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 102,964 kB
  • sloc: perl: 555,553; ansic: 214,041; sh: 38,121; pascal: 8,783; cpp: 3,895; makefile: 2,393; xml: 2,325; yacc: 1,741
file content (28 lines) | stat: -rw-r--r-- 893 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
From 00710da920d47f016f62e8d7410c0199bd9913b6 Mon Sep 17 00:00:00 2001
From: Niko Tyni <ntyni@debian.org>
Date: Fri, 22 Apr 2011 11:15:32 +0300
Subject: Skip tests specific to the upstream Git repository

These tests fail if run from a different git repository than
upstream. This complicates things needlessly for downstream packagers.

Skip the tests altogether even if the .git directory exists.

Patch-Name: debian/skip-upstream-git-tests.diff
---
 t/test.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/t/test.pl b/t/test.pl
index 30db88ced0..0fdc4f42ae 100644
--- a/t/test.pl
+++ b/t/test.pl
@@ -159,7 +159,7 @@ sub skip_all_without_config {
 
 sub find_git_or_skip {
     my ($source_dir, $reason);
-    if (-d '.git') {
+    if (-d '.git' && ! -d 'debian') {
 	$source_dir = '.';
     } elsif (-l 'MANIFEST' && -l 'AUTHORS') {
 	my $where = readlink 'MANIFEST';