gitk: Second try to work around the command line limit on Windows
[git/dscho.git] / t / t4018-diff-funcname.sh
blob5b10e976a3fd0c554ff2fa14004e69343a9ec634
1 #!/bin/sh
3 # Copyright (c) 2007 Johannes E. Schindelin
6 test_description='Test custom diff function name patterns'
8 . ./test-lib.sh
10 LF='
13 cat > Beer.java << EOF
14 public class Beer
16 int special;
17 public static void main(String args[])
19 String s=" ";
20 for(int x = 99; x > 0; x--)
22 System.out.print(x + " bottles of beer on the wall "
23 + x + " bottles of beer\n"
24 + "Take one down, pass it around, " + (x - 1)
25 + " bottles of beer on the wall.\n");
27 System.out.print("Go to the store, buy some more,\n"
28 + "99 bottles of beer on the wall.\n");
31 EOF
33 sed 's/beer\\/beer,\\/' < Beer.java > Beer-correct.java
35 builtin_patterns="bibtex cpp html java objc pascal php python ruby tex"
36 for p in $builtin_patterns
38 test_expect_success "builtin $p pattern compiles" '
39 echo "*.java diff=$p" > .gitattributes &&
40 ! ( git diff --no-index Beer.java Beer-correct.java 2>&1 |
41 grep "fatal" > /dev/null )
43 done
45 test_expect_success 'default behaviour' '
46 rm -f .gitattributes &&
47 git diff --no-index Beer.java Beer-correct.java |
48 grep "^@@.*@@ public class Beer"
51 test_expect_success 'preset java pattern' '
52 echo "*.java diff=java" >.gitattributes &&
53 git diff --no-index Beer.java Beer-correct.java |
54 grep "^@@.*@@ public static void main("
57 git config diff.java.funcname '!static
58 !String
59 [^ ].*s.*'
61 test_expect_success 'custom pattern' '
62 git diff --no-index Beer.java Beer-correct.java |
63 grep "^@@.*@@ int special;$"
66 test_expect_success 'last regexp must not be negated' '
67 git config diff.java.funcname "!static" &&
68 git diff --no-index Beer.java Beer-correct.java 2>&1 |
69 grep "fatal: Last expression must not be negated:"
72 test_expect_success 'pattern which matches to end of line' '
73 git config diff.java.funcname "Beer$" &&
74 git diff --no-index Beer.java Beer-correct.java |
75 grep "^@@.*@@ Beer"
78 test_expect_success 'alternation in pattern' '
79 git config diff.java.xfuncname "^[ ]*((public|static).*)$" &&
80 git diff --no-index Beer.java Beer-correct.java |
81 grep "^@@.*@@ public static void main("
84 test_done