Merge branch 'ma/t1400-undebug-test' into maint
authorJunio C Hamano <gitster@pobox.com>
Wed, 21 Nov 2018 13:58:01 +0000 (22:58 +0900)
committerJunio C Hamano <gitster@pobox.com>
Wed, 21 Nov 2018 13:58:01 +0000 (22:58 +0900)
Test fix.

* ma/t1400-undebug-test:
t1400: drop debug `echo` to actually execute `test`

1  2 
t/t1400-update-ref.sh
diff --combined t/t1400-update-ref.sh
index 02493f14ba2071bb79d520c1d9c262ccf63c5207,18bf32aa7eebaafb3c01395893e2e5f3ade5faaa..b72beebe42ab18b64b53cf86c3879d04a17901e7
@@@ -366,7 -366,7 +366,7 @@@ test_expect_success 'Query master@{2005
        test_when_finished "rm -f o e" &&
        git rev-parse --verify master@{2005-05-25} >o 2>e &&
        test $C = $(cat o) &&
-       echo test "warning: Log for '\''master'\'' only goes back to $ed." = "$(cat e)"
+       test "warning: Log for '\''master'\'' only goes back to $ed." = "$(cat e)"
  '
  test_expect_success 'Query "master@{May 26 2005 23:31:59}" (1 second before history)' '
        test_when_finished "rm -f o e" &&
@@@ -807,37 -807,6 +807,37 @@@ test_expect_success 'stdin delete symre
        test_cmp expect actual
  '
  
 +test_expect_success 'stdin update symref works flag --no-deref' '
 +      git symbolic-ref TESTSYMREFONE $b &&
 +      git symbolic-ref TESTSYMREFTWO $b &&
 +      cat >stdin <<-EOF &&
 +      update TESTSYMREFONE $a $b
 +      update TESTSYMREFTWO $a $b
 +      EOF
 +      git update-ref --no-deref --stdin <stdin &&
 +      git rev-parse TESTSYMREFONE TESTSYMREFTWO >expect &&
 +      git rev-parse $a $a >actual &&
 +      test_cmp expect actual &&
 +      git rev-parse $m~1 >expect &&
 +      git rev-parse $b >actual &&
 +      test_cmp expect actual
 +'
 +
 +test_expect_success 'stdin delete symref works flag --no-deref' '
 +      git symbolic-ref TESTSYMREFONE $b &&
 +      git symbolic-ref TESTSYMREFTWO $b &&
 +      cat >stdin <<-EOF &&
 +      delete TESTSYMREFONE $b
 +      delete TESTSYMREFTWO $b
 +      EOF
 +      git update-ref --no-deref --stdin <stdin &&
 +      test_must_fail git rev-parse --verify -q TESTSYMREFONE &&
 +      test_must_fail git rev-parse --verify -q TESTSYMREFTWO &&
 +      git rev-parse $m~1 >expect &&
 +      git rev-parse $b >actual &&
 +      test_cmp expect actual
 +'
 +
  test_expect_success 'stdin delete ref works with right old value' '
        echo "delete $b $m~1" >stdin &&
        git update-ref --stdin <stdin &&