Merge branch 'md/test-cleanup'
authorJunio C Hamano <gitster@pobox.com>
Tue, 16 Oct 2018 07:16:01 +0000 (16:16 +0900)
committerJunio C Hamano <gitster@pobox.com>
Tue, 16 Oct 2018 07:16:01 +0000 (16:16 +0900)
Various test scripts have been updated for style and also correct
handling of exit status of various commands.

* md/test-cleanup:
tests: order arguments to git-rev-list properly
t9109: don't swallow Git errors upstream of pipes
tests: don't swallow Git errors upstream of pipes
t/*: fix ordering of expected/observed arguments
tests: standardize pipe placement
Documentation: add shell guidelines
t/README: reformat Do, Don't, Keep in mind lists

1  2 
t/README
t/t0000-basic.sh
t/t1006-cat-file.sh
t/t5318-commit-graph.sh
t/t5701-git-serve.sh
t/t5702-protocol-v2.sh
diff --cc t/README
Simple merge
index 391f910c6a9fceff7a03e523076399f2db1cc0f0,224c098a85c6816c992ce63f1faee39f4867905a..26601e698bd3abebd2e1f10ba6012f80c65ffa85
@@@ -1085,19 -1006,19 +1085,19 @@@ test_expect_success 'git read-tree foll
        test "$newtree" = "$tree"
  '
  
 -test_expect_success SHA1 'validate git diff-files output for a know cache/work tree state' '
 -      cat >expected <<\EOF &&
 -:100644 100644 f87290f8eb2cbbea7857214459a0739927eab154 0000000000000000000000000000000000000000 M    path0
 -:120000 120000 15a98433ae33114b085f3eb3bb03b832b3180a01 0000000000000000000000000000000000000000 M    path0sym
 -:100644 100644 3feff949ed00a62d9f7af97c15cd8a30595e7ac7 0000000000000000000000000000000000000000 M    path2/file2
 -:120000 120000 d8ce161addc5173867a3c3c730924388daedbc38 0000000000000000000000000000000000000000 M    path2/file2sym
 -:100644 100644 0aa34cae68d0878578ad119c86ca2b5ed5b28376 0000000000000000000000000000000000000000 M    path3/file3
 -:120000 120000 8599103969b43aff7e430efea79ca4636466794f 0000000000000000000000000000000000000000 M    path3/file3sym
 -:100644 100644 00fb5908cb97c2564a9783c0c64087333b3b464f 0000000000000000000000000000000000000000 M    path3/subp3/file3
 -:120000 120000 6649a1ebe9e9f1c553b66f5a6e74136a07ccc57c 0000000000000000000000000000000000000000 M    path3/subp3/file3sym
 +test_expect_success 'validate git diff-files output for a know cache/work tree state' '
 +      cat >expected <<EOF &&
 +:100644 100644 $(test_oid path0f) $ZERO_OID M path0
 +:120000 120000 $(test_oid path0s) $ZERO_OID M path0sym
 +:100644 100644 $(test_oid path2f) $ZERO_OID M path2/file2
 +:120000 120000 $(test_oid path2s) $ZERO_OID M path2/file2sym
 +:100644 100644 $(test_oid path3f) $ZERO_OID M path3/file3
 +:120000 120000 $(test_oid path3s) $ZERO_OID M path3/file3sym
 +:100644 100644 $(test_oid subp3f) $ZERO_OID M path3/subp3/file3
 +:120000 120000 $(test_oid subp3s) $ZERO_OID M path3/subp3/file3sym
  EOF
        git diff-files >current &&
-       test_cmp current expected
+       test_cmp expected current
  '
  
  test_expect_success 'git update-index --refresh should succeed' '
Simple merge
Simple merge
index 29a54fbfff2b1ade62cea815192ca12b941c6acd,bf139e245937bc1dca1eeb924dbf193a7c347a2a..ae79c6bbc0d66e9a7a184b2d1726a316a0affbbe
@@@ -15,8 -15,8 +15,8 @@@ test_expect_success 'test capability ad
        EOF
  
        git serve --advertise-capabilities >out &&
 -      test-pkt-line unpack <out >actual &&
 +      test-tool pkt-line unpack <out >actual &&
-       test_cmp actual expect
+       test_cmp expect actual
  '
  
  test_expect_success 'stateless-rpc flag does not list capabilities' '
@@@ -88,8 -88,8 +88,8 @@@ test_expect_success 'basics of ls-refs
        EOF
  
        git serve --stateless-rpc <in >out &&
 -      test-pkt-line unpack <out >actual &&
 +      test-tool pkt-line unpack <out >actual &&
-       test_cmp actual expect
+       test_cmp expect actual
  '
  
  test_expect_success 'basic ref-prefixes' '
        EOF
  
        git serve --stateless-rpc <in >out &&
 -      test-pkt-line unpack <out >actual &&
 +      test-tool pkt-line unpack <out >actual &&
-       test_cmp actual expect
+       test_cmp expect actual
  '
  
  test_expect_success 'refs/heads prefix' '
        EOF
  
        git serve --stateless-rpc <in >out &&
 -      test-pkt-line unpack <out >actual &&
 +      test-tool pkt-line unpack <out >actual &&
-       test_cmp actual expect
+       test_cmp expect actual
  '
  
  test_expect_success 'peel parameter' '
        EOF
  
        git serve --stateless-rpc <in >out &&
 -      test-pkt-line unpack <out >actual &&
 +      test-tool pkt-line unpack <out >actual &&
-       test_cmp actual expect
+       test_cmp expect actual
  '
  
  test_expect_success 'symrefs parameter' '
        EOF
  
        git serve --stateless-rpc <in >out &&
 -      test-pkt-line unpack <out >actual &&
 +      test-tool pkt-line unpack <out >actual &&
-       test_cmp actual expect
+       test_cmp expect actual
  '
  
  test_expect_success 'sending server-options' '
        EOF
  
        git serve --stateless-rpc <in >out &&
 -      test-pkt-line unpack <out >actual &&
 +      test-tool pkt-line unpack <out >actual &&
-       test_cmp actual expect
+       test_cmp expect actual
  '
  
  test_expect_success 'unexpected lines are not allowed in fetch request' '
Simple merge