2007-11-17 13:56:03 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='remote push rejects are reported by client'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success 'setup' '
|
|
|
|
mkdir .git/hooks &&
|
2018-07-02 02:23:47 +02:00
|
|
|
write_script .git/hooks/update <<-\EOF &&
|
|
|
|
exit 1
|
|
|
|
EOF
|
2007-11-17 13:56:03 +01: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 17:47:52 +02:00
|
|
|
test_expect_success 'push reports error' 'test_must_fail git push 2>stderr'
|
2007-11-17 13:56:03 +01:00
|
|
|
|
|
|
|
test_expect_success 'individual ref reports error' 'grep rejected stderr'
|
|
|
|
|
|
|
|
test_done
|