2007-11-17 12:56:03 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='remote push rejects are reported by client'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success 'setup' '
|
2022-03-17 10:13:06 +00:00
|
|
|
test_hook update <<-\EOF &&
|
2018-07-02 00:23:47 +00:00
|
|
|
exit 1
|
|
|
|
EOF
|
2007-11-17 12:56:03 +00:00
|
|
|
echo 1 >file &&
|
|
|
|
git add file &&
|
|
|
|
git commit -m 1 &&
|
|
|
|
git clone . child &&
|
|
|
|
cd child &&
|
|
|
|
echo 2 >file &&
|
|
|
|
git commit -a -m 2
|
|
|
|
'
|
|
|
|
|
2008-07-12 15:47:52 +00:00
|
|
|
test_expect_success 'push reports error' 'test_must_fail git push 2>stderr'
|
2007-11-17 12:56:03 +00:00
|
|
|
|
|
|
|
test_expect_success 'individual ref reports error' 'grep rejected stderr'
|
|
|
|
|
|
|
|
test_done
|