Start the 2.46 cycle
[git/gitster.git] / t / t5406-remote-rejects.sh
blobd6a994663383c32da26d1654527f938873589e2b
1 #!/bin/sh
3 test_description='remote push rejects are reported by client'
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
8 test_expect_success 'setup' '
9 test_hook update <<-\EOF &&
10 exit 1
11 EOF
12 echo 1 >file &&
13 git add file &&
14 git commit -m 1 &&
15 git clone . child &&
16 cd child &&
17 echo 2 >file &&
18 git commit -a -m 2
21 test_expect_success 'push reports error' 'test_must_fail git push 2>stderr'
23 test_expect_success 'individual ref reports error' 'grep rejected stderr'
25 test_done