Skip to content

Commit 06eaaa7

Browse files
avargitster
authored andcommitted
t/t9602-cvsimport-branches-tags.sh: Add a PERL prerequisite
Change this test to declare a PERL prerequisite. These tests use the -p switch, so they implicitly depend on Perl code, but nothing was declaring this. Signed-off-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent c2c09e2 commit 06eaaa7

File tree

1 file changed

+15
-13
lines changed

1 file changed

+15
-13
lines changed

t/t9602-cvsimport-branches-tags.sh

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,70 +6,72 @@
66
test_description='git cvsimport handling of branches and tags'
77
. ./lib-cvs.sh
88

9-
CVSROOT="$TEST_DIRECTORY"/t9602/cvsroot
10-
export CVSROOT
9+
test_expect_success PERL 'setup CVSROOT' '
10+
CVSROOT="$TEST_DIRECTORY"/t9602/cvsroot &&
11+
export CVSROOT
12+
'
1113

12-
test_expect_success 'import module' '
14+
test_expect_success PERL 'import module' '
1315
1416
git cvsimport -C module-git module
1517
1618
'
1719

18-
test_expect_success 'test branch master' '
20+
test_expect_success PERL 'test branch master' '
1921
2022
test_cmp_branch_tree master
2123
2224
'
2325

24-
test_expect_success 'test branch vendorbranch' '
26+
test_expect_success PERL 'test branch vendorbranch' '
2527
2628
test_cmp_branch_tree vendorbranch
2729
2830
'
2931

30-
test_expect_failure 'test branch B_FROM_INITIALS' '
32+
test_expect_failure PERL 'test branch B_FROM_INITIALS' '
3133
3234
test_cmp_branch_tree B_FROM_INITIALS
3335
3436
'
3537

36-
test_expect_failure 'test branch B_FROM_INITIALS_BUT_ONE' '
38+
test_expect_failure PERL 'test branch B_FROM_INITIALS_BUT_ONE' '
3739
3840
test_cmp_branch_tree B_FROM_INITIALS_BUT_ONE
3941
4042
'
4143

42-
test_expect_failure 'test branch B_MIXED' '
44+
test_expect_failure PERL 'test branch B_MIXED' '
4345
4446
test_cmp_branch_tree B_MIXED
4547
4648
'
4749

48-
test_expect_success 'test branch B_SPLIT' '
50+
test_expect_success PERL 'test branch B_SPLIT' '
4951
5052
test_cmp_branch_tree B_SPLIT
5153
5254
'
5355

54-
test_expect_failure 'test tag vendortag' '
56+
test_expect_failure PERL 'test tag vendortag' '
5557
5658
test_cmp_branch_tree vendortag
5759
5860
'
5961

60-
test_expect_success 'test tag T_ALL_INITIAL_FILES' '
62+
test_expect_success PERL 'test tag T_ALL_INITIAL_FILES' '
6163
6264
test_cmp_branch_tree T_ALL_INITIAL_FILES
6365
6466
'
6567

66-
test_expect_failure 'test tag T_ALL_INITIAL_FILES_BUT_ONE' '
68+
test_expect_failure PERL 'test tag T_ALL_INITIAL_FILES_BUT_ONE' '
6769
6870
test_cmp_branch_tree T_ALL_INITIAL_FILES_BUT_ONE
6971
7072
'
7173

72-
test_expect_failure 'test tag T_MIXED' '
74+
test_expect_failure PERL 'test tag T_MIXED' '
7375
7476
test_cmp_branch_tree T_MIXED
7577

0 commit comments

Comments
 (0)