Merge branch 'rs/p5302-create-repositories-before-tests'
authorJunio C Hamano <gitster@pobox.com>
Fri, 10 Feb 2017 20:52:25 +0000 (12:52 -0800)
committerJunio C Hamano <gitster@pobox.com>
Fri, 10 Feb 2017 20:52:25 +0000 (12:52 -0800)
Adjust a perf test to new world order where commands that do
require a repository are really strict about having a repository.

* rs/p5302-create-repositories-before-tests:
p5302: create repositories for index-pack results explicitly

t/perf/p5302-pack-index.sh
index 5ee9211f988dce1f334d796623feccda85641bbe..99bdb16c8583a98b0c33cddadabb85f47b7d5c41 100755 (executable)
@@ -13,6 +13,13 @@ test_expect_success 'repack' '
        export PACK
 '
 
+test_expect_success 'create target repositories' '
+       for repo in t1 t2 t3 t4 t5 t6
+       do
+               git init --bare $repo
+       done
+'
+
 test_perf 'index-pack 0 threads' '
        GIT_DIR=t1 git index-pack --threads=1 --stdin < $PACK
 '