1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#!/usr/bin/env bash
. "$(dirname "$0")/testlib.sh"
begin_test "progress meter displays positive progress"
(
set -e
reponame="progress-meter"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"
git lfs track "*.dat"
git add .gitattributes
git commit -m "initial commit"
for i in `seq 1 128`; do
printf "%s" "$i" > "$i.dat"
done
git add *.dat
git commit -m "add many objects"
git push origin main 2>&1 | tee push.log
[ "0" -eq "${PIPESTATUS[0]}" ]
grep "Uploading LFS objects: 100% (128/128), 276 B" push.log
)
end_test
|