#!/bin/sh test_description="test performance of Git operations using the index" . ./perf-lib.sh test_perf_default_repo SPARSE_CONE=f2/f4/f1 test_expect_success 'setup repo and indexes' ' git reset --hard HEAD && # Remove submodules from the example repo, because our # duplication of the entire repo creates an unlikely data shape. if git config --file .gitmodules --get-regexp "submodule.*.path" >modules then git rm $(awk "{print \$2}" modules) && git commit -m "remove submodules" || return 1 fi && echo bogus >a && cp a b && git add a b && git commit -m "level 0" && BLOB=$(git rev-parse HEAD:a) && OLD_COMMIT=$(git rev-parse HEAD) && OLD_TREE=$(git rev-parse HEAD^{tree}) && for i in $(test_seq 1 4) do cat >in <<-EOF && 100755 blob $BLOB a 040000 tree $OLD_TREE f1 040000 tree $OLD_TREE f2 040000 tree $OLD_TREE f3 040000 tree $OLD_TREE f4 EOF NEW_TREE=$(git mktree >$SPARSE_CONE/a && $command ) " done } test_perf_on_all git status test_perf_on_all git add -A test_perf_on_all git add . test_perf_on_all git commit -a -m A test_done