]> git.ipfire.org Git - thirdparty/git.git/blob - t/t9700-perl-git.sh
Merge branch 'rs/bisect-start-leakfix' into maint-2.38
[thirdparty/git.git] / t / t9700-perl-git.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2008 Lea Wiemann
4 #
5
6 test_description='perl interface (Git.pm)'
7
8 TEST_PASSES_SANITIZE_LEAK=true
9 . ./test-lib.sh
10 . "$TEST_DIRECTORY"/lib-perl.sh
11
12 skip_all_if_no_Test_More
13
14 # set up test repository
15
16 test_expect_success \
17 'set up test repository' \
18 'echo "test file 1" > file1 &&
19 echo "test file 2" > file2 &&
20 mkdir directory1 &&
21 echo "in directory1" >> directory1/file &&
22 mkdir directory2 &&
23 echo "in directory2" >> directory2/file &&
24 git add . &&
25 git commit -m "first commit" &&
26
27 echo "new file in subdir 2" > directory2/file2 &&
28 git add . &&
29 git commit -m "commit in directory2" &&
30
31 echo "changed file 1" > file1 &&
32 git commit -a -m "second commit" &&
33
34 git config --add color.test.slot1 green &&
35 git config --add test.string value &&
36 git config --add test.dupstring value1 &&
37 git config --add test.dupstring value2 &&
38 git config --add test.booltrue true &&
39 git config --add test.boolfalse no &&
40 git config --add test.boolother other &&
41 git config --add test.int 2k &&
42 git config --add test.path "~/foo" &&
43 git config --add test.pathexpanded "$HOME/foo" &&
44 git config --add test.pathmulti foo &&
45 git config --add test.pathmulti bar
46 '
47
48 test_expect_success 'use t9700/test.pl to test Git.pm' '
49 "$PERL_PATH" "$TEST_DIRECTORY"/t9700/test.pl 2>stderr &&
50 test_must_be_empty stderr
51 '
52
53 test_done