Jeff King | ca74c45 | 2007-11-17 07:56:03 -0500 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | test_description='remote push rejects are reported by client' |
| 4 | |
| 5 | . ./test-lib.sh |
| 6 | |
| 7 | test_expect_success 'setup' ' |
| 8 | mkdir .git/hooks && |
| 9 | (echo "#!/bin/sh" ; echo "exit 1") >.git/hooks/update && |
| 10 | chmod +x .git/hooks/update && |
| 11 | echo 1 >file && |
| 12 | git add file && |
| 13 | git commit -m 1 && |
| 14 | git clone . child && |
| 15 | cd child && |
| 16 | echo 2 >file && |
| 17 | git commit -a -m 2 |
| 18 | ' |
| 19 | |
Stephan Beyer | d492b31 | 2008-07-12 17:47:52 +0200 | [diff] [blame] | 20 | test_expect_success 'push reports error' 'test_must_fail git push 2>stderr' |
Jeff King | ca74c45 | 2007-11-17 07:56:03 -0500 | [diff] [blame] | 21 | |
| 22 | test_expect_success 'individual ref reports error' 'grep rejected stderr' |
| 23 | |
| 24 | test_done |