summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/perl-5.20.0/debian/skip-upstream-git-tests.diff
blob: 7110298f04ab5cb1f7886daf8dfdae849ba07b04 (plain)
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 4d1b20bcec1610d22b718ffae154427a7a218632 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 30db88c..0fdc4f4 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';