1#!/bin/sh
   2test_description="Tests index-pack performance"
   4. ./perf-lib.sh
   6test_perf_large_repo
   8test_expect_success 'repack' '
  10        git repack -ad &&
  11        PACK=$(ls .git/objects/pack/*.pack | head -n1) &&
  12        test -f "$PACK" &&
  13        export PACK
  14'
  15test_perf 'index-pack 0 threads' '
  17        GIT_DIR=t1 git index-pack --threads=1 --stdin < $PACK
  18'
  19test_perf 'index-pack 1 thread ' '
  21        GIT_DIR=t2 GIT_FORCE_THREADS=1 git index-pack --threads=1 --stdin < $PACK
  22'
  23test_perf 'index-pack 2 threads' '
  25        GIT_DIR=t3 git index-pack --threads=2 --stdin < $PACK
  26'
  27test_perf 'index-pack 4 threads' '
  29        GIT_DIR=t4 git index-pack --threads=4 --stdin < $PACK
  30'
  31test_perf 'index-pack 8 threads' '
  33        GIT_DIR=t5 git index-pack --threads=8 --stdin < $PACK
  34'
  35test_perf 'index-pack default number of threads' '
  37        GIT_DIR=t6 git index-pack --stdin < $PACK
  38'
  39test_done