commit - f8a36e221091eb68b439ebe4eb07a5d03b335c28
commit + f9756a57e7f0fc01ee242aaca9a6d512c7af2310
blob - 9ac2cfc3c6e7719719f8547f7f5a1de2ece46017
blob + e05bcb5919da85b26acaf3ede82ad39cbe533b43
--- regress/cmdline/send.sh
+++ regress/cmdline/send.sh
got send -q -r $testroot/repo > $testroot/stdout 2> $testroot/stderr
ret="$?"
- if [ "$ret" == "0" ]; then
+ if [ "$ret" = "0" ]; then
echo "got send command succeeded unexpectedly" >&2
test_done "$testroot" "$ret"
return 1
got send -q -r $testroot/repo -f > $testroot/stdout \
2> $testroot/stderr
ret="$?"
- if [ "$ret" == "0" ]; then
+ if [ "$ret" = "0" ]; then
echo "got send command succeeded unexpectedly" >&2
test_done "$testroot" "$ret"
return 1
got send -q -r $testroot/repo -d branch1 -b branch1 \
> $testroot/stdout 2> $testroot/stderr
ret="$?"
- if [ "$ret" == "0" ]; then
+ if [ "$ret" = "0" ]; then
echo "got send command succeeded unexpectedly" >&2
test_done "$testroot" "$ret"
return 1
got send -q -r $testroot/repo -d refs/heads/branchX origin \
> $testroot/stdout 2> $testroot/stderr
ret="$?"
- if [ "$ret" == "0" ]; then
+ if [ "$ret" = "0" ]; then
echo "got send command succeeded unexpectedly" >&2
test_done "$testroot" "$ret"
return 1
got send -q -r $testroot/repo -d refs/tags/1.0 origin \
> $testroot/stdout 2> $testroot/stderr
ret="$?"
- if [ "$ret" == "0" ]; then
+ if [ "$ret" = "0" ]; then
echo "got send command succeeded unexpectedly" >&2
test_done "$testroot" "$ret"
return 1
got send -q -r $testroot/repo -t 1.0 > $testroot/stdout \
2> $testroot/stderr
ret="$?"
- if [ "$ret" == "0" ]; then
+ if [ "$ret" = "0" ]; then
echo "got send command succeeded unexpectedly" >&2
test_done "$testroot" "$ret"
return 1
got send -q -r $testroot/repo -T > $testroot/stdout \
2> $testroot/stderr
ret="$?"
- if [ "$ret" == "0" ]; then
+ if [ "$ret" = "0" ]; then
echo "got send command succeeded unexpectedly" >&2
test_done "$testroot" "$ret"
return 1
got send -a -q -r $testroot/repo-clone -b master > $testroot/stdout \
2> $testroot/stderr
ret="$?"
- if [ "$ret" == "0" ]; then
+ if [ "$ret" = "0" ]; then
echo "got send command succeeded unexpectedly" >&2
test_done "$testroot" "$ret"
return 1