Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2019-05-29 13:48:37 +0300
committerJacob Vosmaer <jacob@gitlab.com>2019-05-29 13:48:37 +0300
commit04f98190b5315494e583596cc7f6a21d09ec388a (patch)
tree60c6e5f35b92d004dd83fa77420c8dd192432895
parent0984eefa7d3a0fd9ccb86f2f0de358c32d4f8efa (diff)
Use gitaly-debugjv-test-delta-islands
-rwxr-xr-xtest-delta-islands10
1 files changed, 5 insertions, 5 deletions
diff --git a/test-delta-islands b/test-delta-islands
index 7cfd28cea..e0a50ab38 100755
--- a/test-delta-islands
+++ b/test-delta-islands
@@ -21,7 +21,7 @@ def main
puts "\n\n---\nWith bitmap\n---"
2.times do
- pack_objects(bitmap)
+ run!(%W[gitaly-debug simulate-http-clone #{bitmap}])
puts "---\n\n"
end
@@ -33,7 +33,7 @@ def main
puts "\n\n---\nWith bitmap and bitmap hash cache\n---"
2.times do
- pack_objects(bitmapHC)
+ run!(%W[gitaly-debug simulate-http-clone #{bitmapHC}])
puts "---\n\n"
end
@@ -44,11 +44,11 @@ def main
run!(%W[git -C #{delta} config] + cfg.split('=', 2))
end
- run!(%W[git -C #{delta} repack -afd])
+ run!(%W[git -C #{delta} repack -ad])
puts "\n\n---\nWith bitmap and delta islands\n---"
2.times do
- pack_objects(delta)
+ run!(%W[gitaly-debug simulate-http-clone #{delta}])
puts "---\n\n"
end
@@ -57,7 +57,7 @@ def main
puts "\n\n---\nWith bitmap, delta islands and bitmap hash cache\n---"
2.times do
- pack_objects(delta)
+ run!(%W[gitaly-debug simulate-http-clone #{delta}])
puts "---\n\n"
end
ensure