diff --git a/lib/scmperf_lib/__init__.py b/lib/scmperf_lib/__init__.py
index e2512e028441c51d896e3a0849e23d2a557dd2e3_bGliL3NjbXBlcmZfbGliL19faW5pdF9fLnB5..711f2e737fbb29562858cb6e82a36465208060ad_bGliL3NjbXBlcmZfbGliL19faW5pdF9fLnB5 100644
--- a/lib/scmperf_lib/__init__.py
+++ b/lib/scmperf_lib/__init__.py
@@ -1,4 +1,5 @@
 import json
+import hashlib
 import subprocess
 
 
@@ -2,6 +3,15 @@
 import subprocess
 
 
+def get_reference_hash(repo_id, hash_data):
+    """ Returns the hash of repo_id and json-encodable hash_data
+    """
+    hash_value = "{0}-{1}".format(repo_id, json.dumps(hash_data, sort_keys=True))
+    tarball_hash = hashlib.sha1(hash_value).hexdigest()[:8]
+
+    return tarball_hash
+
+
 def check_format_data(repo):
     """ Return the list of mismatched format values between default and repo
 
diff --git a/repo-scripts/make-all b/repo-scripts/make-all
index e2512e028441c51d896e3a0849e23d2a557dd2e3_cmVwby1zY3JpcHRzL21ha2UtYWxs..711f2e737fbb29562858cb6e82a36465208060ad_cmVwby1zY3JpcHRzL21ha2UtYWxs 100755
--- a/repo-scripts/make-all
+++ b/repo-scripts/make-all
@@ -26,5 +26,5 @@
 
 
 "${root}"/make-reference "${repo_source}" "${repo_id}"
-"${root}"/make-partial-repos "${root}"/../partial-sets.yaml "${repo_id}".benchrepo
+"${root}"/make-partial-repos "${root}"/../partial-sets.yaml "${repo_id}"-*.benchrepo
 
diff --git a/repo-scripts/make-partial-repos b/repo-scripts/make-partial-repos
index e2512e028441c51d896e3a0849e23d2a557dd2e3_cmVwby1zY3JpcHRzL21ha2UtcGFydGlhbC1yZXBvcw==..711f2e737fbb29562858cb6e82a36465208060ad_cmVwby1zY3JpcHRzL21ha2UtcGFydGlhbC1yZXBvcw== 100755
--- a/repo-scripts/make-partial-repos
+++ b/repo-scripts/make-partial-repos
@@ -9,6 +9,18 @@
 import urllib
 import shutil
 
+from os.path import abspath, basename, dirname, join
+
+parent_dir = abspath(join(dirname(abspath(__file__)), ".."))
+sys.path.insert(0, join(parent_dir, "lib"))
+
+from scmperf_lib import (  # isort:skip
+    gather_repo_stats,
+    shell_exec,
+    get_reference_hash
+)
+
+
 def read_configuration(config_path):
     with open(config_path) as config_file:
         return yaml.load(config_file.read())
@@ -24,9 +36,10 @@
             print "skipping disabled reference repository:", repo_name
             continue
 
-        clonedir = os.path.join(refdir, repo_name + '-reference')
+        repo_prefix = refconfig["repo-prefix"]
+        clonedir = os.path.join(refdir, "{0}-reference".format(repo_prefix))
         for pset, setconfig in sorted(partial_revset.items()):
             revset = None
             if setconfig is not None:
                 revset = setconfig.get('remove')
             repo_suffix = pset
@@ -28,9 +41,9 @@
         for pset, setconfig in sorted(partial_revset.items()):
             revset = None
             if setconfig is not None:
                 revset = setconfig.get('remove')
             repo_suffix = pset
-            partial_name = "{}-partial-{}".format(repo_name, repo_suffix)
+            partial_name = "{}-partial-{}".format(repo_prefix, repo_suffix)
             partialdir = join('.', partial_name)
             if not isdir(partialdir):
                 print(
diff --git a/repo-scripts/make-reference b/repo-scripts/make-reference
index e2512e028441c51d896e3a0849e23d2a557dd2e3_cmVwby1zY3JpcHRzL21ha2UtcmVmZXJlbmNl..711f2e737fbb29562858cb6e82a36465208060ad_cmVwby1zY3JpcHRzL21ha2UtcmVmZXJlbmNl 100755
--- a/repo-scripts/make-reference
+++ b/repo-scripts/make-reference
@@ -18,6 +18,7 @@
     gather_repo_stats,
     shell_exec,
     check_format_data,
+    get_reference_hash
 )  # isort:skip
 
 
@@ -45,8 +46,6 @@
     repo_id = args.id
 
     repo_main = "{0}-reference".format(repo_id)
-    repo_details = "{0}.benchrepo".format(repo_id)
-    repo_tarball = "{0}-reference.tar".format(repo_id)
 
     repo_hg = join(repo_main, ".hg")
 
@@ -121,7 +120,19 @@
 
     data = gather_repo_stats(repo_main, repo_id, repo_source)
 
+    tarball_hash = get_reference_hash(repo_id, data["reference-repo"]["format-info"])
+
+    repo_prefix = "{0}-{1}".format(repo_id, tarball_hash)
+    repo_details = "{0}.benchrepo".format(repo_prefix)
+    repo_tarball = "{0}-reference.tar".format(repo_prefix)
+    repo_main_with_hash = "{0}-reference".format(repo_prefix)
+
+    # Set the repo hash manually because we need the format info to compute
+    # the hash
+    data["reference-repo"]["repo-hash"] = tarball_hash
+    data["reference-repo"]["repo-prefix"] = repo_prefix
+
     # Write data to the benchrepo file
     with open(repo_details, "w") as repo_details_file:
         repo_details_file.write(yaml.dump(data, default_flow_style=False))
 
@@ -124,7 +135,11 @@
     # Write data to the benchrepo file
     with open(repo_details, "w") as repo_details_file:
         repo_details_file.write(yaml.dump(data, default_flow_style=False))
 
+
+    # Rename the repo prior to archiving
+    os.rename(repo_main, repo_main_with_hash)
+
     # Tar everything
     print("building a reference tarball")
     with tarfile.open(repo_tarball, "w") as repo_tar_file:
@@ -128,7 +143,7 @@
     # Tar everything
     print("building a reference tarball")
     with tarfile.open(repo_tarball, "w") as repo_tar_file:
-        repo_tar_file.add(repo_main)
+        repo_tar_file.add(repo_main_with_hash)
         # Add the benchrepo file at the end so it's easier to replace it
         repo_tar_file.add(repo_details)
     print("result available at: {0}".format(repo_tarball))
diff --git a/tests/test-make-all.t b/tests/test-make-all.t
index e2512e028441c51d896e3a0849e23d2a557dd2e3_dGVzdHMvdGVzdC1tYWtlLWFsbC50..711f2e737fbb29562858cb6e82a36465208060ad_dGVzdHMvdGVzdC1tYWtlLWFsbC50 100644
--- a/tests/test-make-all.t
+++ b/tests/test-make-all.t
@@ -28,10 +28,10 @@
   DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7.
   hg cloning repository from: some-dir/my-source-repo
   building a reference tarball
-  result available at: testrepo-reference.tar
-  Cloning testrepo (testrepo-reference stripped of last(all(), 100)) into ./testrepo-partial-last-hundred (for exchange benchmarks)
-  Cloning testrepo (testrepo-reference stripped of last(all(), 10)) into ./testrepo-partial-last-ten (for exchange benchmarks)
-  Cloning testrepo (testrepo-reference stripped of last(all(), 1000)) into ./testrepo-partial-last-thousand (for exchange benchmarks)
-  Cloning testrepo (testrepo-reference stripped of None) into ./testrepo-partial-same (for exchange benchmarks)
+  result available at: testrepo-edd0bce5-reference.tar
+  Cloning testrepo (testrepo-edd0bce5-reference stripped of last(all(), 100)) into ./testrepo-edd0bce5-partial-last-hundred (for exchange benchmarks)
+  Cloning testrepo (testrepo-edd0bce5-reference stripped of last(all(), 10)) into ./testrepo-edd0bce5-partial-last-ten (for exchange benchmarks)
+  Cloning testrepo (testrepo-edd0bce5-reference stripped of last(all(), 1000)) into ./testrepo-edd0bce5-partial-last-thousand (for exchange benchmarks)
+  Cloning testrepo (testrepo-edd0bce5-reference stripped of None) into ./testrepo-edd0bce5-partial-same (for exchange benchmarks)
 
   $ ls -1 *.tar
@@ -36,8 +36,8 @@
 
   $ ls -1 *.tar
-  testrepo-partial-last-hundred.tar
-  testrepo-partial-last-ten.tar
-  testrepo-partial-last-thousand.tar
-  testrepo-partial-same.tar
-  testrepo-reference.tar
+  testrepo-edd0bce5-partial-last-hundred.tar
+  testrepo-edd0bce5-partial-last-ten.tar
+  testrepo-edd0bce5-partial-last-thousand.tar
+  testrepo-edd0bce5-partial-same.tar
+  testrepo-edd0bce5-reference.tar
   $ tar -axf testrepo-reference.tar testrepo.benchrepo -O
@@ -43,22 +43,4 @@
   $ tar -axf testrepo-reference.tar testrepo.benchrepo -O
-  reference-repo:
-    enabled: true
-    format-info:
-      compression: zlib
-      dotencode: true
-      fncache: true
-      generaldelta: true
-      plain-cl-delta: true
-      sparserevlog: true
-    hg-version: * (glob)
-    id: testrepo
-    number-heads:
-      all: 3
-      visible: 3
-    number-named-branch:
-      all: 1
-      visible: 1
-    number-revisions:
-      all: 53
-      visible: 53
-    source: some-dir/my-source-repo
+  tar: testrepo-reference.tar: Cannot open: No such file or directory
+  tar: Error is not recoverable: exiting now
+  [2]
diff --git a/tests/test-make-partials.t b/tests/test-make-partials.t
index e2512e028441c51d896e3a0849e23d2a557dd2e3_dGVzdHMvdGVzdC1tYWtlLXBhcnRpYWxzLnQ=..711f2e737fbb29562858cb6e82a36465208060ad_dGVzdHMvdGVzdC1tYWtlLXBhcnRpYWxzLnQ= 100644
--- a/tests/test-make-partials.t
+++ b/tests/test-make-partials.t
@@ -16,7 +16,7 @@
   $ make-reference ../some-dir/source_A repo4test_A
   hg cloning repository from: ../some-dir/source_A
   building a reference tarball
-  result available at: repo4test_A-reference.tar
+  result available at: repo4test_A-64d4574b-reference.tar
   $ make-reference ../some-dir/source_B repo4test_B
   hg cloning repository from: ../some-dir/source_B
   building a reference tarball
@@ -20,10 +20,10 @@
   $ make-reference ../some-dir/source_B repo4test_B
   hg cloning repository from: ../some-dir/source_B
   building a reference tarball
-  result available at: repo4test_B-reference.tar
+  result available at: repo4test_B-4dddee9f-reference.tar
   $ cd ..
 
 Unbundle local reference
 
   $ mkdir local-references
   $ cd local-references/
@@ -24,11 +24,11 @@
   $ cd ..
 
 Unbundle local reference
 
   $ mkdir local-references
   $ cd local-references/
-  $ tar xf ../repo-references/repo4test_A-reference.tar --warning=no-timestamp
-  $ tar xf ../repo-references/repo4test_B-reference.tar --warning=no-timestamp
+  $ tar xf ../repo-references/repo4test_A-*-reference.tar --warning=no-timestamp
+  $ tar xf ../repo-references/repo4test_B-*-reference.tar --warning=no-timestamp
   $ cd ..
 
 Define partial set
@@ -48,7 +48,7 @@
   $ mkdir partials-one
   $ cd partials-one
 
-  $ make-partial-repos ../p-config.yaml ../local-references/repo4test_A.benchrepo
-  Cloning repo4test_A (../local-references/repo4test_A-reference stripped of last(all(), 10)) into ./repo4test_A-partial-missing-last-10 (for exchange benchmarks)
-  Cloning repo4test_A (../local-references/repo4test_A-reference stripped of None) into ./repo4test_A-partial-same (for exchange benchmarks)
+  $ make-partial-repos ../p-config.yaml ../local-references/repo4test_A-*.benchrepo
+  Cloning repo4test_A (../local-references/repo4test_A-64d4574b-reference stripped of last(all(), 10)) into ./repo4test_A-64d4574b-partial-missing-last-10 (for exchange benchmarks)
+  Cloning repo4test_A (../local-references/repo4test_A-64d4574b-reference stripped of None) into ./repo4test_A-64d4574b-partial-same (for exchange benchmarks)
   $ ls -1
@@ -54,7 +54,7 @@
   $ ls -1
-  repo4test_A-partial-missing-last-10
-  repo4test_A-partial-missing-last-10.tar
-  repo4test_A-partial-same
-  repo4test_A-partial-same.tar
-  $ hg -R ../local-references/repo4test_A-reference tip -T '{rev}:{node}\n'
+  repo4test_A-64d4574b-partial-missing-last-10
+  repo4test_A-64d4574b-partial-missing-last-10.tar
+  repo4test_A-64d4574b-partial-same
+  repo4test_A-64d4574b-partial-same.tar
+  $ hg -R ../local-references/repo4test_A-*-reference tip -T '{rev}:{node}\n'
   52:99cae3713489c109d3f91f755bd6d6ea0363d0d5
@@ -60,3 +60,3 @@
   52:99cae3713489c109d3f91f755bd6d6ea0363d0d5
-  $ hg -R repo4test_A-partial-missing-last-10 tip -T '{rev}:{node}\n'
+  $ hg -R repo4test_A-*-partial-missing-last-10 tip -T '{rev}:{node}\n'
   42:511665bca184225b9a5d21d3ffd595045cc2fde7
@@ -62,3 +62,3 @@
   42:511665bca184225b9a5d21d3ffd595045cc2fde7
-  $ cat repo4test_A-partial-missing-last-10/.hg/ASV_EXPECTED_TIP_REV_HASH
+  $ cat repo4test_A-*-partial-missing-last-10/.hg/ASV_EXPECTED_TIP_REV_HASH
   42 511665bca184225b9a5d21d3ffd595045cc2fde7 (no-eol)
@@ -64,3 +64,3 @@
   42 511665bca184225b9a5d21d3ffd595045cc2fde7 (no-eol)
-  $ hg -R repo4test_A-partial-same tip -T '{rev}:{node}\n'
+  $ hg -R repo4test_A-*-partial-same tip -T '{rev}:{node}\n'
   52:99cae3713489c109d3f91f755bd6d6ea0363d0d5
@@ -66,5 +66,5 @@
   52:99cae3713489c109d3f91f755bd6d6ea0363d0d5
-  $ cat repo4test_A-partial-same/.hg/ASV_EXPECTED_TIP_REV_HASH
+  $ cat repo4test_A-*-partial-same/.hg/ASV_EXPECTED_TIP_REV_HASH
   52 99cae3713489c109d3f91f755bd6d6ea0363d0d5 (no-eol)
 
   $ cd ..
@@ -78,8 +78,8 @@
   $ cd partials-multiple
 
   $ make-partial-repos ../p-config.yaml ../local-references/*.benchrepo
-  Cloning repo4test_A (../local-references/repo4test_A-reference stripped of last(all(), 10)) into ./repo4test_A-partial-missing-last-10 (for exchange benchmarks)
-  Cloning repo4test_A (../local-references/repo4test_A-reference stripped of None) into ./repo4test_A-partial-same (for exchange benchmarks)
-  Cloning repo4test_B (../local-references/repo4test_B-reference stripped of last(all(), 10)) into ./repo4test_B-partial-missing-last-10 (for exchange benchmarks)
-  Cloning repo4test_B (../local-references/repo4test_B-reference stripped of None) into ./repo4test_B-partial-same (for exchange benchmarks)
+  Cloning repo4test_A (../local-references/repo4test_A-64d4574b-reference stripped of last(all(), 10)) into ./repo4test_A-64d4574b-partial-missing-last-10 (for exchange benchmarks)
+  Cloning repo4test_A (../local-references/repo4test_A-64d4574b-reference stripped of None) into ./repo4test_A-64d4574b-partial-same (for exchange benchmarks)
+  Cloning repo4test_B (../local-references/repo4test_B-4dddee9f-reference stripped of last(all(), 10)) into ./repo4test_B-4dddee9f-partial-missing-last-10 (for exchange benchmarks)
+  Cloning repo4test_B (../local-references/repo4test_B-4dddee9f-reference stripped of None) into ./repo4test_B-4dddee9f-partial-same (for exchange benchmarks)
   $ ls -1
@@ -85,10 +85,10 @@
   $ ls -1
-  repo4test_A-partial-missing-last-10
-  repo4test_A-partial-missing-last-10.tar
-  repo4test_A-partial-same
-  repo4test_A-partial-same.tar
-  repo4test_B-partial-missing-last-10
-  repo4test_B-partial-missing-last-10.tar
-  repo4test_B-partial-same
-  repo4test_B-partial-same.tar
+  repo4test_A-64d4574b-partial-missing-last-10
+  repo4test_A-64d4574b-partial-missing-last-10.tar
+  repo4test_A-64d4574b-partial-same
+  repo4test_A-64d4574b-partial-same.tar
+  repo4test_B-4dddee9f-partial-missing-last-10
+  repo4test_B-4dddee9f-partial-missing-last-10.tar
+  repo4test_B-4dddee9f-partial-same
+  repo4test_B-4dddee9f-partial-same.tar
 
@@ -94,31 +94,31 @@
 
-  $ tar tf repo4test_B-partial-same.tar | sort
-  ./repo4test_B-partial-same/
-  ./repo4test_B-partial-same/.hg/
-  ./repo4test_B-partial-same/.hg/00changelog.i
-  ./repo4test_B-partial-same/.hg/ASV_EXPECTED_TIP_REV_HASH
-  ./repo4test_B-partial-same/.hg/cache/
-  ./repo4test_B-partial-same/.hg/cache/branch2-served
-  ./repo4test_B-partial-same/.hg/cache/rbc-names-v1
-  ./repo4test_B-partial-same/.hg/cache/rbc-revs-v1
-  ./repo4test_B-partial-same/.hg/hgrc
-  ./repo4test_B-partial-same/.hg/requires
-  ./repo4test_B-partial-same/.hg/store/
-  ./repo4test_B-partial-same/.hg/store/00changelog.i
-  ./repo4test_B-partial-same/.hg/store/00manifest.i
-  ./repo4test_B-partial-same/.hg/store/data/
-  ./repo4test_B-partial-same/.hg/store/data/nf0.i
-  ./repo4test_B-partial-same/.hg/store/data/nf1.i
-  ./repo4test_B-partial-same/.hg/store/data/nf10.i
-  ./repo4test_B-partial-same/.hg/store/data/nf11.i
-  ./repo4test_B-partial-same/.hg/store/data/nf2.i
-  ./repo4test_B-partial-same/.hg/store/data/nf3.i
-  ./repo4test_B-partial-same/.hg/store/data/nf4.i
-  ./repo4test_B-partial-same/.hg/store/data/nf5.i
-  ./repo4test_B-partial-same/.hg/store/data/nf6.i
-  ./repo4test_B-partial-same/.hg/store/data/nf7.i
-  ./repo4test_B-partial-same/.hg/store/data/nf8.i
-  ./repo4test_B-partial-same/.hg/store/data/nf9.i
-  ./repo4test_B-partial-same/.hg/store/fncache
-  $ tar -axf repo4test_B-partial-same.tar ./repo4test_B-partial-same/.hg/ASV_EXPECTED_TIP_REV_HASH -O
+  $ tar tf repo4test_B-*-partial-same.tar | sort
+  ./repo4test_B-4dddee9f-partial-same/
+  ./repo4test_B-4dddee9f-partial-same/.hg/
+  ./repo4test_B-4dddee9f-partial-same/.hg/00changelog.i
+  ./repo4test_B-4dddee9f-partial-same/.hg/ASV_EXPECTED_TIP_REV_HASH
+  ./repo4test_B-4dddee9f-partial-same/.hg/cache/
+  ./repo4test_B-4dddee9f-partial-same/.hg/cache/branch2-served
+  ./repo4test_B-4dddee9f-partial-same/.hg/cache/rbc-names-v1
+  ./repo4test_B-4dddee9f-partial-same/.hg/cache/rbc-revs-v1
+  ./repo4test_B-4dddee9f-partial-same/.hg/hgrc
+  ./repo4test_B-4dddee9f-partial-same/.hg/requires
+  ./repo4test_B-4dddee9f-partial-same/.hg/store/
+  ./repo4test_B-4dddee9f-partial-same/.hg/store/00changelog.i
+  ./repo4test_B-4dddee9f-partial-same/.hg/store/00manifest.i
+  ./repo4test_B-4dddee9f-partial-same/.hg/store/data/
+  ./repo4test_B-4dddee9f-partial-same/.hg/store/data/nf0.i
+  ./repo4test_B-4dddee9f-partial-same/.hg/store/data/nf1.i
+  ./repo4test_B-4dddee9f-partial-same/.hg/store/data/nf10.i
+  ./repo4test_B-4dddee9f-partial-same/.hg/store/data/nf11.i
+  ./repo4test_B-4dddee9f-partial-same/.hg/store/data/nf2.i
+  ./repo4test_B-4dddee9f-partial-same/.hg/store/data/nf3.i
+  ./repo4test_B-4dddee9f-partial-same/.hg/store/data/nf4.i
+  ./repo4test_B-4dddee9f-partial-same/.hg/store/data/nf5.i
+  ./repo4test_B-4dddee9f-partial-same/.hg/store/data/nf6.i
+  ./repo4test_B-4dddee9f-partial-same/.hg/store/data/nf7.i
+  ./repo4test_B-4dddee9f-partial-same/.hg/store/data/nf8.i
+  ./repo4test_B-4dddee9f-partial-same/.hg/store/data/nf9.i
+  ./repo4test_B-4dddee9f-partial-same/.hg/store/fncache
+  $ tar -axf repo4test_B-*-partial-same.tar ./repo4test_B-*-partial-same/.hg/ASV_EXPECTED_TIP_REV_HASH -O
   11 c0808a653b4884c4dcda90aa39bf6dca45972de3 (no-eol)
@@ -124,5 +124,5 @@
   11 c0808a653b4884c4dcda90aa39bf6dca45972de3 (no-eol)
-  $ tar -axf repo4test_B-partial-same.tar ./repo4test_B-partial-same/.hg/hgrc -O
+  $ tar -axf repo4test_B-*-partial-same.tar ./repo4test_B-*-partial-same/.hg/hgrc -O
   # example repository config (see 'hg help config' for more info)
   [paths]
   default = $TESTTMP/some-dir/source_B
@@ -137,7 +137,7 @@
   [ui]
   # name and email (local to this repository, optional), e.g.
   # username = Jane Doe <jdoe@example.com>
-  $ tar -axf repo4test_B-partial-same.tar ./repo4test_B-partial-same/.hg/requires -O
+  $ tar -axf repo4test_B-*-partial-same.tar ./repo4test_B-*-partial-same/.hg/requires -O
   dotencode
   fncache
   generaldelta
@@ -155,5 +155,5 @@
   $ mkdir partials-disabled
   $ cd partials-disabled
 
-  $ grep enabled ../local-references/repo4test_A.benchrepo
+  $ grep enabled ../local-references/repo4test_A-*.benchrepo
     enabled: true
@@ -159,6 +159,6 @@
     enabled: true
-  $ sed -i 's/enabled: true/enabled: false/' ../local-references/repo4test_A.benchrepo
-  $ grep enabled ../local-references/repo4test_A.benchrepo
+  $ sed -i 's/enabled: true/enabled: false/' ../local-references/repo4test_A-*.benchrepo
+  $ grep enabled ../local-references/repo4test_A-*.benchrepo
     enabled: false
   $ make-partial-repos ../p-config.yaml ../local-references/*.benchrepo
   skipping disabled reference repository: repo4test_A
@@ -162,6 +162,6 @@
     enabled: false
   $ make-partial-repos ../p-config.yaml ../local-references/*.benchrepo
   skipping disabled reference repository: repo4test_A
-  Cloning repo4test_B (../local-references/repo4test_B-reference stripped of last(all(), 10)) into ./repo4test_B-partial-missing-last-10 (for exchange benchmarks)
-  Cloning repo4test_B (../local-references/repo4test_B-reference stripped of None) into ./repo4test_B-partial-same (for exchange benchmarks)
+  Cloning repo4test_B (../local-references/repo4test_B-4dddee9f-reference stripped of last(all(), 10)) into ./repo4test_B-4dddee9f-partial-missing-last-10 (for exchange benchmarks)
+  Cloning repo4test_B (../local-references/repo4test_B-4dddee9f-reference stripped of None) into ./repo4test_B-4dddee9f-partial-same (for exchange benchmarks)
   $ ls -1
@@ -167,10 +167,10 @@
   $ ls -1
-  repo4test_B-partial-missing-last-10
-  repo4test_B-partial-missing-last-10.tar
-  repo4test_B-partial-same
-  repo4test_B-partial-same.tar
-  $ sed -i 's/enabled: No/enabled: Yes/' ../local-references/repo4test_A.benchrepo
-  $ grep enabled ../local-references/repo4test_A.benchrepo
+  repo4test_B-4dddee9f-partial-missing-last-10
+  repo4test_B-4dddee9f-partial-missing-last-10.tar
+  repo4test_B-4dddee9f-partial-same
+  repo4test_B-4dddee9f-partial-same.tar
+  $ sed -i 's/enabled: No/enabled: Yes/' ../local-references/repo4test_A-*.benchrepo
+  $ grep enabled ../local-references/repo4test_A-*.benchrepo
     enabled: false
   $ cd ..
 
@@ -189,5 +189,5 @@
   using 'repo4test_C-existing-reference' as source instead of cloning
   (make sure this was cloned with the right version)
   building a reference tarball
-  result available at: repo4test_C-reference.tar
+  result available at: repo4test_C-0c7024f2-reference.tar
   $ cd ../local-references
@@ -193,8 +193,8 @@
   $ cd ../local-references
-  $ tar xf ../repo-references/repo4test_C-reference.tar --warning=no-timestamp
-  $ cat repo4test_C-reference/.hg/hgrc
+  $ tar xf ../repo-references/repo4test_C-*-reference.tar --warning=no-timestamp
+  $ cat repo4test_C-*-reference/.hg/hgrc
   [format]
   dotencode = no
 
 (requires should not contains"dotencode")
 
@@ -196,7 +196,7 @@
   [format]
   dotencode = no
 
 (requires should not contains"dotencode")
 
-  $ grep dotencode repo4test_C-reference/.hg/requires
+  $ grep dotencode repo4test_C-*-reference/.hg/requires
   [1]
@@ -202,5 +202,5 @@
   [1]
-  $ cat repo4test_C-reference/.hg/requires
+  $ cat repo4test_C-*-reference/.hg/requires
   fncache
   generaldelta
   revlogv1
@@ -212,5 +212,5 @@
 
 Create reference repository using the same format
 
-  $ make-partial-repos ../p-config.yaml ../local-references/repo4test_C.benchrepo
+  $ make-partial-repos ../p-config.yaml ../local-references/repo4test_C-*.benchrepo
   0 files updated, 0 files merged, 2 files removed, 0 files unresolved
@@ -216,4 +216,4 @@
   0 files updated, 0 files merged, 2 files removed, 0 files unresolved
-  Cloning repo4test_C (../local-references/repo4test_C-reference stripped of last(all(), 10)) into ./repo4test_C-partial-missing-last-10 (for exchange benchmarks)
-  Cloning repo4test_C (../local-references/repo4test_C-reference stripped of None) into ./repo4test_C-partial-same (for exchange benchmarks)
+  Cloning repo4test_C (../local-references/repo4test_C-0c7024f2-reference stripped of last(all(), 10)) into ./repo4test_C-0c7024f2-partial-missing-last-10 (for exchange benchmarks)
+  Cloning repo4test_C (../local-references/repo4test_C-0c7024f2-reference stripped of None) into ./repo4test_C-0c7024f2-partial-same (for exchange benchmarks)
   $ ls -1
@@ -219,6 +219,6 @@
   $ ls -1
-  repo4test_C-partial-missing-last-10
-  repo4test_C-partial-missing-last-10.tar
-  repo4test_C-partial-same
-  repo4test_C-partial-same.tar
+  repo4test_C-0c7024f2-partial-missing-last-10
+  repo4test_C-0c7024f2-partial-missing-last-10.tar
+  repo4test_C-0c7024f2-partial-same
+  repo4test_C-0c7024f2-partial-same.tar
 
@@ -224,101 +224,101 @@
 
-  $ tar tf repo4test_C-partial-same.tar | sort
-  ./repo4test_C-partial-same/
-  ./repo4test_C-partial-same/.hg/
-  ./repo4test_C-partial-same/.hg/00changelog.i
-  ./repo4test_C-partial-same/.hg/ASV_EXPECTED_TIP_REV_HASH
-  ./repo4test_C-partial-same/.hg/branch
-  ./repo4test_C-partial-same/.hg/cache/
-  ./repo4test_C-partial-same/.hg/cache/branch2-base
-  ./repo4test_C-partial-same/.hg/cache/manifestfulltextcache
-  ./repo4test_C-partial-same/.hg/cache/rbc-names-v1
-  ./repo4test_C-partial-same/.hg/cache/rbc-revs-v1
-  ./repo4test_C-partial-same/.hg/dirstate
-  ./repo4test_C-partial-same/.hg/hgrc
-  ./repo4test_C-partial-same/.hg/requires
-  ./repo4test_C-partial-same/.hg/store/
-  ./repo4test_C-partial-same/.hg/store/00changelog.i
-  ./repo4test_C-partial-same/.hg/store/00manifest.i
-  ./repo4test_C-partial-same/.hg/store/data/
-  ./repo4test_C-partial-same/.hg/store/data/nf0.i
-  ./repo4test_C-partial-same/.hg/store/data/nf1.i
-  ./repo4test_C-partial-same/.hg/store/data/nf10.i
-  ./repo4test_C-partial-same/.hg/store/data/nf11.i
-  ./repo4test_C-partial-same/.hg/store/data/nf12.i
-  ./repo4test_C-partial-same/.hg/store/data/nf13.i
-  ./repo4test_C-partial-same/.hg/store/data/nf14.i
-  ./repo4test_C-partial-same/.hg/store/data/nf15.i
-  ./repo4test_C-partial-same/.hg/store/data/nf16.i
-  ./repo4test_C-partial-same/.hg/store/data/nf17.i
-  ./repo4test_C-partial-same/.hg/store/data/nf18.i
-  ./repo4test_C-partial-same/.hg/store/data/nf19.i
-  ./repo4test_C-partial-same/.hg/store/data/nf2.i
-  ./repo4test_C-partial-same/.hg/store/data/nf20.i
-  ./repo4test_C-partial-same/.hg/store/data/nf21.i
-  ./repo4test_C-partial-same/.hg/store/data/nf22.i
-  ./repo4test_C-partial-same/.hg/store/data/nf23.i
-  ./repo4test_C-partial-same/.hg/store/data/nf24.i
-  ./repo4test_C-partial-same/.hg/store/data/nf25.i
-  ./repo4test_C-partial-same/.hg/store/data/nf26.i
-  ./repo4test_C-partial-same/.hg/store/data/nf27.i
-  ./repo4test_C-partial-same/.hg/store/data/nf28.i
-  ./repo4test_C-partial-same/.hg/store/data/nf29.i
-  ./repo4test_C-partial-same/.hg/store/data/nf3.i
-  ./repo4test_C-partial-same/.hg/store/data/nf30.i
-  ./repo4test_C-partial-same/.hg/store/data/nf31.i
-  ./repo4test_C-partial-same/.hg/store/data/nf32.i
-  ./repo4test_C-partial-same/.hg/store/data/nf33.i
-  ./repo4test_C-partial-same/.hg/store/data/nf34.i
-  ./repo4test_C-partial-same/.hg/store/data/nf35.i
-  ./repo4test_C-partial-same/.hg/store/data/nf36.i
-  ./repo4test_C-partial-same/.hg/store/data/nf37.i
-  ./repo4test_C-partial-same/.hg/store/data/nf38.i
-  ./repo4test_C-partial-same/.hg/store/data/nf39.i
-  ./repo4test_C-partial-same/.hg/store/data/nf4.i
-  ./repo4test_C-partial-same/.hg/store/data/nf40.i
-  ./repo4test_C-partial-same/.hg/store/data/nf41.i
-  ./repo4test_C-partial-same/.hg/store/data/nf42.i
-  ./repo4test_C-partial-same/.hg/store/data/nf43.i
-  ./repo4test_C-partial-same/.hg/store/data/nf44.i
-  ./repo4test_C-partial-same/.hg/store/data/nf45.i
-  ./repo4test_C-partial-same/.hg/store/data/nf46.i
-  ./repo4test_C-partial-same/.hg/store/data/nf47.i
-  ./repo4test_C-partial-same/.hg/store/data/nf48.i
-  ./repo4test_C-partial-same/.hg/store/data/nf49.i
-  ./repo4test_C-partial-same/.hg/store/data/nf5.i
-  ./repo4test_C-partial-same/.hg/store/data/nf50.i
-  ./repo4test_C-partial-same/.hg/store/data/nf51.i
-  ./repo4test_C-partial-same/.hg/store/data/nf52.i
-  ./repo4test_C-partial-same/.hg/store/data/nf6.i
-  ./repo4test_C-partial-same/.hg/store/data/nf7.i
-  ./repo4test_C-partial-same/.hg/store/data/nf8.i
-  ./repo4test_C-partial-same/.hg/store/data/nf9.i
-  ./repo4test_C-partial-same/.hg/store/fncache
-  ./repo4test_C-partial-same/.hg/store/phaseroots
-  ./repo4test_C-partial-same/.hg/store/undo
-  ./repo4test_C-partial-same/.hg/store/undo.backupfiles
-  ./repo4test_C-partial-same/.hg/store/undo.phaseroots
-  ./repo4test_C-partial-same/.hg/undo.bookmarks
-  ./repo4test_C-partial-same/.hg/undo.branch
-  ./repo4test_C-partial-same/.hg/undo.desc
-  ./repo4test_C-partial-same/.hg/undo.dirstate
-  ./repo4test_C-partial-same/.hg/wcache/
-  ./repo4test_C-partial-same/.hg/wcache/checkisexec
-  ./repo4test_C-partial-same/.hg/wcache/checklink
-  ./repo4test_C-partial-same/.hg/wcache/checklink-target
-  ./repo4test_C-partial-same/nf10
-  ./repo4test_C-partial-same/nf11
-  ./repo4test_C-partial-same/nf12
-  ./repo4test_C-partial-same/nf13
-  ./repo4test_C-partial-same/nf14
-  ./repo4test_C-partial-same/nf15
-  ./repo4test_C-partial-same/nf16
-  ./repo4test_C-partial-same/nf17
-  ./repo4test_C-partial-same/nf51
-  ./repo4test_C-partial-same/nf52
-  ./repo4test_C-partial-same/nf6
-  ./repo4test_C-partial-same/nf7
-  ./repo4test_C-partial-same/nf8
-  ./repo4test_C-partial-same/nf9
-  $ tar -axf repo4test_C-partial-same.tar ./repo4test_C-partial-same/.hg/ASV_EXPECTED_TIP_REV_HASH -O
+  $ tar tf repo4test_C-*-partial-same.tar | sort
+  ./repo4test_C-0c7024f2-partial-same/
+  ./repo4test_C-0c7024f2-partial-same/.hg/
+  ./repo4test_C-0c7024f2-partial-same/.hg/00changelog.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/ASV_EXPECTED_TIP_REV_HASH
+  ./repo4test_C-0c7024f2-partial-same/.hg/branch
+  ./repo4test_C-0c7024f2-partial-same/.hg/cache/
+  ./repo4test_C-0c7024f2-partial-same/.hg/cache/branch2-base
+  ./repo4test_C-0c7024f2-partial-same/.hg/cache/manifestfulltextcache
+  ./repo4test_C-0c7024f2-partial-same/.hg/cache/rbc-names-v1
+  ./repo4test_C-0c7024f2-partial-same/.hg/cache/rbc-revs-v1
+  ./repo4test_C-0c7024f2-partial-same/.hg/dirstate
+  ./repo4test_C-0c7024f2-partial-same/.hg/hgrc
+  ./repo4test_C-0c7024f2-partial-same/.hg/requires
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/00changelog.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/00manifest.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf0.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf1.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf10.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf11.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf12.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf13.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf14.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf15.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf16.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf17.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf18.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf19.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf2.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf20.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf21.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf22.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf23.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf24.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf25.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf26.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf27.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf28.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf29.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf3.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf30.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf31.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf32.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf33.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf34.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf35.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf36.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf37.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf38.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf39.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf4.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf40.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf41.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf42.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf43.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf44.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf45.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf46.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf47.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf48.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf49.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf5.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf50.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf51.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf52.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf6.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf7.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf8.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/data/nf9.i
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/fncache
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/phaseroots
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/undo
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/undo.backupfiles
+  ./repo4test_C-0c7024f2-partial-same/.hg/store/undo.phaseroots
+  ./repo4test_C-0c7024f2-partial-same/.hg/undo.bookmarks
+  ./repo4test_C-0c7024f2-partial-same/.hg/undo.branch
+  ./repo4test_C-0c7024f2-partial-same/.hg/undo.desc
+  ./repo4test_C-0c7024f2-partial-same/.hg/undo.dirstate
+  ./repo4test_C-0c7024f2-partial-same/.hg/wcache/
+  ./repo4test_C-0c7024f2-partial-same/.hg/wcache/checkisexec
+  ./repo4test_C-0c7024f2-partial-same/.hg/wcache/checklink
+  ./repo4test_C-0c7024f2-partial-same/.hg/wcache/checklink-target
+  ./repo4test_C-0c7024f2-partial-same/nf10
+  ./repo4test_C-0c7024f2-partial-same/nf11
+  ./repo4test_C-0c7024f2-partial-same/nf12
+  ./repo4test_C-0c7024f2-partial-same/nf13
+  ./repo4test_C-0c7024f2-partial-same/nf14
+  ./repo4test_C-0c7024f2-partial-same/nf15
+  ./repo4test_C-0c7024f2-partial-same/nf16
+  ./repo4test_C-0c7024f2-partial-same/nf17
+  ./repo4test_C-0c7024f2-partial-same/nf51
+  ./repo4test_C-0c7024f2-partial-same/nf52
+  ./repo4test_C-0c7024f2-partial-same/nf6
+  ./repo4test_C-0c7024f2-partial-same/nf7
+  ./repo4test_C-0c7024f2-partial-same/nf8
+  ./repo4test_C-0c7024f2-partial-same/nf9
+  $ tar -axf repo4test_C-*-partial-same.tar ./repo4test_C-*-partial-same/.hg/ASV_EXPECTED_TIP_REV_HASH -O
   52 99cae3713489c109d3f91f755bd6d6ea0363d0d5 (no-eol)
@@ -324,5 +324,5 @@
   52 99cae3713489c109d3f91f755bd6d6ea0363d0d5 (no-eol)
-  $ tar -axf repo4test_C-partial-same.tar ./repo4test_C-partial-same/.hg/hgrc -O
+  $ tar -axf repo4test_C-*-partial-same.tar ./repo4test_C-*-partial-same/.hg/hgrc -O
   [format]
   dotencode = no
 
@@ -326,5 +326,5 @@
   [format]
   dotencode = no
 
-  $ tar -axf repo4test_C-partial-same.tar ./repo4test_C-partial-same/.hg/requires -O | grep dotencode
+  $ tar -axf repo4test_C-*-partial-same.tar ./repo4test_C-*-partial-same/.hg/requires -O | grep dotencode
   [1]
@@ -330,7 +330,7 @@
   [1]
-  $ tar -axf repo4test_C-partial-same.tar ./repo4test_C-partial-same/.hg/requires -O
+  $ tar -axf repo4test_C-*-partial-same.tar ./repo4test_C-*-partial-same/.hg/requires -O
   fncache
   generaldelta
   revlogv1
   sparserevlog
   store
@@ -332,7 +332,7 @@
   fncache
   generaldelta
   revlogv1
   sparserevlog
   store
-  $ tar -axf repo4test_C-partial-missing-last-10.tar ./repo4test_C-partial-missing-last-10/.hg/ASV_EXPECTED_TIP_REV_HASH -O
+  $ tar -axf repo4test_C-*-partial-missing-last-10.tar ./repo4test_C-*-partial-missing-last-10/.hg/ASV_EXPECTED_TIP_REV_HASH -O
   42 511665bca184225b9a5d21d3ffd595045cc2fde7 (no-eol)
@@ -338,5 +338,5 @@
   42 511665bca184225b9a5d21d3ffd595045cc2fde7 (no-eol)
-  $ tar -axf repo4test_C-partial-missing-last-10.tar ./repo4test_C-partial-missing-last-10/.hg/hgrc -O
+  $ tar -axf repo4test_C-*-partial-missing-last-10.tar ./repo4test_C-*-partial-missing-last-10/.hg/hgrc -O
   [format]
   dotencode = no
 
@@ -340,5 +340,5 @@
   [format]
   dotencode = no
 
-  $ tar -axf repo4test_C-partial-missing-last-10.tar ./repo4test_C-partial-missing-last-10/.hg/requires -O | grep dotencode
+  $ tar -axf repo4test_C-*-partial-missing-last-10.tar ./repo4test_C-*-partial-missing-last-10/.hg/requires -O | grep dotencode
   [1]
@@ -344,5 +344,5 @@
   [1]
-  $ tar -axf repo4test_C-partial-missing-last-10.tar ./repo4test_C-partial-missing-last-10/.hg/requires -O
+  $ tar -axf repo4test_C-*-partial-missing-last-10.tar ./repo4test_C-*-partial-missing-last-10/.hg/requires -O
   fncache
   generaldelta
   revlogv1
diff --git a/tests/test-make-reference.t b/tests/test-make-reference.t
index e2512e028441c51d896e3a0849e23d2a557dd2e3_dGVzdHMvdGVzdC1tYWtlLXJlZmVyZW5jZS50..711f2e737fbb29562858cb6e82a36465208060ad_dGVzdHMvdGVzdC1tYWtlLXJlZmVyZW5jZS50 100644
--- a/tests/test-make-reference.t
+++ b/tests/test-make-reference.t
@@ -43,5 +43,5 @@
   	generaldelta: False != True (repo/config)
   	sparserevlog: False != True (repo/config)
   building a reference tarball
-  result available at: my-reference-reference.tar
+  result available at: my-reference-1eba6334-reference.tar
   $ ls -1
@@ -47,5 +47,5 @@
   $ ls -1
-  my-reference-reference
-  my-reference-reference.tar
-  my-reference.benchrepo
+  my-reference-1eba6334-reference
+  my-reference-1eba6334-reference.tar
+  my-reference-1eba6334.benchrepo
   some-dir
@@ -51,5 +51,5 @@
   some-dir
-  $ cat my-reference.benchrepo
+  $ cat my-reference-*.benchrepo
   reference-repo:
     enabled: true
     format-info:
@@ -70,8 +70,10 @@
     number-revisions:
       all: 53
       visible: 53
+    repo-hash: 1eba6334
+    repo-prefix: my-reference-1eba6334
     source: some-dir/my-source-repo
 
 Call with existing data
 -----------------
 
@@ -73,9 +75,11 @@
     source: some-dir/my-source-repo
 
 Call with existing data
 -----------------
 
-  $ rm -rf my-reference.benchrepo my-reference.tar my-reference-reference
+  $ rm -rf my-reference-*.benchrepo my-reference-*.tar my-reference-*-reference
+  $ ls -1
+  some-dir
   $ make-reference some-dir/my-source-repo my-reference --existing-repo some-dir/my-source-repo 
   copy of old repository backed up at $TESTTMP/my-reference-reference/.hg/upgradebackup.* (glob)
   the old repository will not be deleted; remove it to free up disk space once the upgraded repository is verified
@@ -85,5 +89,5 @@
   	generaldelta: False != True (repo/config)
   	sparserevlog: False != True (repo/config)
   building a reference tarball
-  result available at: my-reference-reference.tar
+  result available at: my-reference-1eba6334-reference.tar
   $ ls -1
@@ -89,5 +93,5 @@
   $ ls -1
-  my-reference-reference
-  my-reference-reference.tar
-  my-reference.benchrepo
+  my-reference-1eba6334-reference
+  my-reference-1eba6334-reference.tar
+  my-reference-1eba6334.benchrepo
   some-dir
@@ -93,5 +97,5 @@
   some-dir
-  $ cat my-reference.benchrepo
+  $ cat my-reference-*.benchrepo
   reference-repo:
     enabled: true
     format-info:
@@ -112,4 +116,6 @@
     number-revisions:
       all: 53
       visible: 53
+    repo-hash: 1eba6334
+    repo-prefix: my-reference-1eba6334
     source: some-dir/my-source-repo
@@ -115,85 +121,85 @@
     source: some-dir/my-source-repo
-  $ tar tf my-reference-reference.tar | sort
-  my-reference-reference/
-  my-reference-reference/.hg/
-  my-reference-reference/.hg/00changelog.i
-  my-reference-reference/.hg/cache/
-  my-reference-reference/.hg/cache/branch2-served
-  my-reference-reference/.hg/cache/manifestfulltextcache
-  my-reference-reference/.hg/cache/rbc-names-v1
-  my-reference-reference/.hg/cache/rbc-revs-v1
-  my-reference-reference/.hg/dirstate
-  my-reference-reference/.hg/localtags
-  my-reference-reference/.hg/requires
-  my-reference-reference/.hg/store/
-  my-reference-reference/.hg/store/00changelog.i
-  my-reference-reference/.hg/store/00manifest.i
-  my-reference-reference/.hg/store/data/
-  my-reference-reference/.hg/store/data/nf0.i
-  my-reference-reference/.hg/store/data/nf1.i
-  my-reference-reference/.hg/store/data/nf10.i
-  my-reference-reference/.hg/store/data/nf11.i
-  my-reference-reference/.hg/store/data/nf12.i
-  my-reference-reference/.hg/store/data/nf13.i
-  my-reference-reference/.hg/store/data/nf14.i
-  my-reference-reference/.hg/store/data/nf15.i
-  my-reference-reference/.hg/store/data/nf16.i
-  my-reference-reference/.hg/store/data/nf17.i
-  my-reference-reference/.hg/store/data/nf18.i
-  my-reference-reference/.hg/store/data/nf19.i
-  my-reference-reference/.hg/store/data/nf2.i
-  my-reference-reference/.hg/store/data/nf20.i
-  my-reference-reference/.hg/store/data/nf21.i
-  my-reference-reference/.hg/store/data/nf22.i
-  my-reference-reference/.hg/store/data/nf23.i
-  my-reference-reference/.hg/store/data/nf24.i
-  my-reference-reference/.hg/store/data/nf25.i
-  my-reference-reference/.hg/store/data/nf26.i
-  my-reference-reference/.hg/store/data/nf27.i
-  my-reference-reference/.hg/store/data/nf28.i
-  my-reference-reference/.hg/store/data/nf29.i
-  my-reference-reference/.hg/store/data/nf3.i
-  my-reference-reference/.hg/store/data/nf30.i
-  my-reference-reference/.hg/store/data/nf31.i
-  my-reference-reference/.hg/store/data/nf32.i
-  my-reference-reference/.hg/store/data/nf33.i
-  my-reference-reference/.hg/store/data/nf34.i
-  my-reference-reference/.hg/store/data/nf35.i
-  my-reference-reference/.hg/store/data/nf36.i
-  my-reference-reference/.hg/store/data/nf37.i
-  my-reference-reference/.hg/store/data/nf38.i
-  my-reference-reference/.hg/store/data/nf39.i
-  my-reference-reference/.hg/store/data/nf4.i
-  my-reference-reference/.hg/store/data/nf40.i
-  my-reference-reference/.hg/store/data/nf41.i
-  my-reference-reference/.hg/store/data/nf42.i
-  my-reference-reference/.hg/store/data/nf43.i
-  my-reference-reference/.hg/store/data/nf44.i
-  my-reference-reference/.hg/store/data/nf45.i
-  my-reference-reference/.hg/store/data/nf46.i
-  my-reference-reference/.hg/store/data/nf47.i
-  my-reference-reference/.hg/store/data/nf48.i
-  my-reference-reference/.hg/store/data/nf49.i
-  my-reference-reference/.hg/store/data/nf5.i
-  my-reference-reference/.hg/store/data/nf50.i
-  my-reference-reference/.hg/store/data/nf51.i
-  my-reference-reference/.hg/store/data/nf52.i
-  my-reference-reference/.hg/store/data/nf6.i
-  my-reference-reference/.hg/store/data/nf7.i
-  my-reference-reference/.hg/store/data/nf8.i
-  my-reference-reference/.hg/store/data/nf9.i
-  my-reference-reference/.hg/store/fncache
-  my-reference-reference/.hg/store/phaseroots
-  my-reference-reference/.hg/store/undo
-  my-reference-reference/.hg/store/undo.backupfiles
-  my-reference-reference/.hg/store/undo.phaseroots
-  my-reference-reference/.hg/undo.bookmarks
-  my-reference-reference/.hg/undo.branch
-  my-reference-reference/.hg/undo.desc
-  my-reference-reference/.hg/undo.dirstate
-  my-reference-reference/.hg/wcache/
-  my-reference.benchrepo
+  $ tar tf my-reference-*-reference.tar | sort
+  my-reference-1eba6334-reference/
+  my-reference-1eba6334-reference/.hg/
+  my-reference-1eba6334-reference/.hg/00changelog.i
+  my-reference-1eba6334-reference/.hg/cache/
+  my-reference-1eba6334-reference/.hg/cache/branch2-served
+  my-reference-1eba6334-reference/.hg/cache/manifestfulltextcache
+  my-reference-1eba6334-reference/.hg/cache/rbc-names-v1
+  my-reference-1eba6334-reference/.hg/cache/rbc-revs-v1
+  my-reference-1eba6334-reference/.hg/dirstate
+  my-reference-1eba6334-reference/.hg/localtags
+  my-reference-1eba6334-reference/.hg/requires
+  my-reference-1eba6334-reference/.hg/store/
+  my-reference-1eba6334-reference/.hg/store/00changelog.i
+  my-reference-1eba6334-reference/.hg/store/00manifest.i
+  my-reference-1eba6334-reference/.hg/store/data/
+  my-reference-1eba6334-reference/.hg/store/data/nf0.i
+  my-reference-1eba6334-reference/.hg/store/data/nf1.i
+  my-reference-1eba6334-reference/.hg/store/data/nf10.i
+  my-reference-1eba6334-reference/.hg/store/data/nf11.i
+  my-reference-1eba6334-reference/.hg/store/data/nf12.i
+  my-reference-1eba6334-reference/.hg/store/data/nf13.i
+  my-reference-1eba6334-reference/.hg/store/data/nf14.i
+  my-reference-1eba6334-reference/.hg/store/data/nf15.i
+  my-reference-1eba6334-reference/.hg/store/data/nf16.i
+  my-reference-1eba6334-reference/.hg/store/data/nf17.i
+  my-reference-1eba6334-reference/.hg/store/data/nf18.i
+  my-reference-1eba6334-reference/.hg/store/data/nf19.i
+  my-reference-1eba6334-reference/.hg/store/data/nf2.i
+  my-reference-1eba6334-reference/.hg/store/data/nf20.i
+  my-reference-1eba6334-reference/.hg/store/data/nf21.i
+  my-reference-1eba6334-reference/.hg/store/data/nf22.i
+  my-reference-1eba6334-reference/.hg/store/data/nf23.i
+  my-reference-1eba6334-reference/.hg/store/data/nf24.i
+  my-reference-1eba6334-reference/.hg/store/data/nf25.i
+  my-reference-1eba6334-reference/.hg/store/data/nf26.i
+  my-reference-1eba6334-reference/.hg/store/data/nf27.i
+  my-reference-1eba6334-reference/.hg/store/data/nf28.i
+  my-reference-1eba6334-reference/.hg/store/data/nf29.i
+  my-reference-1eba6334-reference/.hg/store/data/nf3.i
+  my-reference-1eba6334-reference/.hg/store/data/nf30.i
+  my-reference-1eba6334-reference/.hg/store/data/nf31.i
+  my-reference-1eba6334-reference/.hg/store/data/nf32.i
+  my-reference-1eba6334-reference/.hg/store/data/nf33.i
+  my-reference-1eba6334-reference/.hg/store/data/nf34.i
+  my-reference-1eba6334-reference/.hg/store/data/nf35.i
+  my-reference-1eba6334-reference/.hg/store/data/nf36.i
+  my-reference-1eba6334-reference/.hg/store/data/nf37.i
+  my-reference-1eba6334-reference/.hg/store/data/nf38.i
+  my-reference-1eba6334-reference/.hg/store/data/nf39.i
+  my-reference-1eba6334-reference/.hg/store/data/nf4.i
+  my-reference-1eba6334-reference/.hg/store/data/nf40.i
+  my-reference-1eba6334-reference/.hg/store/data/nf41.i
+  my-reference-1eba6334-reference/.hg/store/data/nf42.i
+  my-reference-1eba6334-reference/.hg/store/data/nf43.i
+  my-reference-1eba6334-reference/.hg/store/data/nf44.i
+  my-reference-1eba6334-reference/.hg/store/data/nf45.i
+  my-reference-1eba6334-reference/.hg/store/data/nf46.i
+  my-reference-1eba6334-reference/.hg/store/data/nf47.i
+  my-reference-1eba6334-reference/.hg/store/data/nf48.i
+  my-reference-1eba6334-reference/.hg/store/data/nf49.i
+  my-reference-1eba6334-reference/.hg/store/data/nf5.i
+  my-reference-1eba6334-reference/.hg/store/data/nf50.i
+  my-reference-1eba6334-reference/.hg/store/data/nf51.i
+  my-reference-1eba6334-reference/.hg/store/data/nf52.i
+  my-reference-1eba6334-reference/.hg/store/data/nf6.i
+  my-reference-1eba6334-reference/.hg/store/data/nf7.i
+  my-reference-1eba6334-reference/.hg/store/data/nf8.i
+  my-reference-1eba6334-reference/.hg/store/data/nf9.i
+  my-reference-1eba6334-reference/.hg/store/fncache
+  my-reference-1eba6334-reference/.hg/store/phaseroots
+  my-reference-1eba6334-reference/.hg/store/undo
+  my-reference-1eba6334-reference/.hg/store/undo.backupfiles
+  my-reference-1eba6334-reference/.hg/store/undo.phaseroots
+  my-reference-1eba6334-reference/.hg/undo.bookmarks
+  my-reference-1eba6334-reference/.hg/undo.branch
+  my-reference-1eba6334-reference/.hg/undo.desc
+  my-reference-1eba6334-reference/.hg/undo.dirstate
+  my-reference-1eba6334-reference/.hg/wcache/
+  my-reference-1eba6334.benchrepo
 
 update the reference
 --------------------
 
@@ -196,8 +202,8 @@
 
 update the reference
 --------------------
 
-  $ EDITOR=cat update-reference-config my-reference-reference.tar
+  $ EDITOR=cat update-reference-config my-reference-*-reference.tar
   reference-repo:
     enabled: true
     format-info:
@@ -218,9 +224,11 @@
     number-revisions:
       all: 53
       visible: 53
+    repo-hash: 1eba6334
+    repo-prefix: my-reference-1eba6334
     source: some-dir/my-source-repo
   $ cat << EOF > editor.sh
   > #!/bin/bash
   > sed -i 's,some-dir/my-source-repo,some-dir/my-other-source-repo,' \$1
   > EOF
   $ chmod +x editor.sh
@@ -221,11 +229,11 @@
     source: some-dir/my-source-repo
   $ cat << EOF > editor.sh
   > #!/bin/bash
   > sed -i 's,some-dir/my-source-repo,some-dir/my-other-source-repo,' \$1
   > EOF
   $ chmod +x editor.sh
-  $ EDITOR=$PWD/editor.sh update-reference-config my-reference-reference.tar
+  $ EDITOR=$PWD/editor.sh update-reference-config my-reference-*-reference.tar
 
   $ mkdir dst
   $ cd dst
 
@@ -228,9 +236,9 @@
 
   $ mkdir dst
   $ cd dst
 
-  $ tar xf ../my-reference-reference.tar my-reference.benchrepo
-  $ cat my-reference.benchrepo
+  $ tar xf ../my-reference-*-reference.tar --wildcards "my-reference-*.benchrepo"
+  $ cat my-reference-*.benchrepo
   reference-repo:
     enabled: true
     format-info:
@@ -251,9 +259,11 @@
     number-revisions:
       all: 53
       visible: 53
+    repo-hash: 1eba6334
+    repo-prefix: my-reference-1eba6334
     source: some-dir/my-other-source-repo
   $ cd ..
 
 Call from scratch with explicit optimization
 --------------------------------------------
 
@@ -254,10 +264,10 @@
     source: some-dir/my-other-source-repo
   $ cd ..
 
 Call from scratch with explicit optimization
 --------------------------------------------
 
-  $ rm -rf my-reference.benchrepo my-reference-reference.tar my-reference-reference
+  $ rm -rf my-reference-*.benchrepo my-reference-reference-*.tar my-reference-*-reference
   $ ls -1
   dst
   editor.sh
@@ -261,6 +271,7 @@
   $ ls -1
   dst
   editor.sh
+  my-reference-1eba6334-reference.tar
   some-dir
   $ make-reference some-dir/my-source-repo my-reference --optimize re-delta-parent re-delta-multibase
   copy of old repository backed up at $TESTTMP/my-reference-reference/.hg/upgradebackup.* (glob)
@@ -269,7 +280,7 @@
   Running `debugupgraderepo` with requested optimizations:
   	re-delta-parent, re-delta-multibase
   building a reference tarball
-  result available at: my-reference-reference.tar
+  result available at: my-reference-1eba6334-reference.tar
   $ ls -1
   dst
   editor.sh
@@ -273,7 +284,7 @@
   $ ls -1
   dst
   editor.sh
-  my-reference-reference
-  my-reference-reference.tar
-  my-reference.benchrepo
+  my-reference-1eba6334-reference
+  my-reference-1eba6334-reference.tar
+  my-reference-1eba6334.benchrepo
   some-dir
@@ -279,5 +290,5 @@
   some-dir
-  $ cat my-reference.benchrepo
+  $ cat my-reference-*.benchrepo
   reference-repo:
     enabled: true
     format-info:
@@ -298,8 +309,10 @@
     number-revisions:
       all: 53
       visible: 53
+    repo-hash: 1eba6334
+    repo-prefix: my-reference-1eba6334
     source: some-dir/my-source-repo
 
 Call from scratch with given hgrc file
 --------------------------------------
 
@@ -301,9 +314,9 @@
     source: some-dir/my-source-repo
 
 Call from scratch with given hgrc file
 --------------------------------------
 
-  $ rm -rf my-reference.benchrepo my-reference.tar my-reference-reference
+  $ rm -rf my-reference-*.benchrepo my-reference-*.tar my-reference-reference
   $ ls -1
   dst
   editor.sh
@@ -307,7 +320,7 @@
   $ ls -1
   dst
   editor.sh
-  my-reference-reference.tar
+  my-reference-1eba6334-reference
   some-dir
 
   $ cat << EOF > sparse-revlog-hgrc
@@ -327,7 +340,7 @@
   Running debugupgraderepo because of format mismatch:
   	generaldelta: False != True (repo/config)
   building a reference tarball
-  result available at: my-reference-reference.tar
+  result available at: my-reference-1db5db75-reference.tar
   $ ls -1
   dst
   editor.sh
@@ -331,9 +344,10 @@
   $ ls -1
   dst
   editor.sh
-  my-reference-reference
-  my-reference-reference.tar
-  my-reference.benchrepo
+  my-reference-1db5db75-reference
+  my-reference-1db5db75-reference.tar
+  my-reference-1db5db75.benchrepo
+  my-reference-1eba6334-reference
   some-dir
   sparse-revlog-hgrc
 
@@ -337,7 +351,7 @@
   some-dir
   sparse-revlog-hgrc
 
-  $ cat my-reference.benchrepo
+  $ cat my-reference-*.benchrepo
   reference-repo:
     enabled: true
     format-info:
@@ -358,4 +372,6 @@
     number-revisions:
       all: 53
       visible: 53
+    repo-hash: 1db5db75
+    repo-prefix: my-reference-1db5db75
     source: some-dir/my-source-repo
diff --git a/tests/test-smoke-test.t b/tests/test-smoke-test.t
index e2512e028441c51d896e3a0849e23d2a557dd2e3_dGVzdHMvdGVzdC1zbW9rZS10ZXN0LnQ=..711f2e737fbb29562858cb6e82a36465208060ad_dGVzdHMvdGVzdC1zbW9rZS10ZXN0LnQ= 100644
--- a/tests/test-smoke-test.t
+++ b/tests/test-smoke-test.t
@@ -15,7 +15,7 @@
   $ make-reference ../test-repo smoke-test-A
   hg cloning repository from: ../test-repo
   building a reference tarball
-  result available at: smoke-test-A-reference.tar
+  result available at: smoke-test-A-4753a6da-reference.tar
   $ make-reference ../test-repo smoke-test-B
   hg cloning repository from: ../test-repo
   building a reference tarball
@@ -19,5 +19,5 @@
   $ make-reference ../test-repo smoke-test-B
   hg cloning repository from: ../test-repo
   building a reference tarball
-  result available at: smoke-test-B-reference.tar
+  result available at: smoke-test-B-cfe96b48-reference.tar
   $ make-partial-repos $TESTDIR/../partial-sets.yaml *.benchrepo
@@ -23,12 +23,12 @@
   $ make-partial-repos $TESTDIR/../partial-sets.yaml *.benchrepo
-  Cloning smoke-test-A (smoke-test-A-reference stripped of last(all(), 100)) into ./smoke-test-A-partial-last-hundred (for exchange benchmarks)
-  Cloning smoke-test-A (smoke-test-A-reference stripped of last(all(), 10)) into ./smoke-test-A-partial-last-ten (for exchange benchmarks)
-  Cloning smoke-test-A (smoke-test-A-reference stripped of last(all(), 1000)) into ./smoke-test-A-partial-last-thousand (for exchange benchmarks)
-  Cloning smoke-test-A (smoke-test-A-reference stripped of None) into ./smoke-test-A-partial-same (for exchange benchmarks)
-  Cloning smoke-test-B (smoke-test-B-reference stripped of last(all(), 100)) into ./smoke-test-B-partial-last-hundred (for exchange benchmarks)
-  Cloning smoke-test-B (smoke-test-B-reference stripped of last(all(), 10)) into ./smoke-test-B-partial-last-ten (for exchange benchmarks)
-  Cloning smoke-test-B (smoke-test-B-reference stripped of last(all(), 1000)) into ./smoke-test-B-partial-last-thousand (for exchange benchmarks)
-  Cloning smoke-test-B (smoke-test-B-reference stripped of None) into ./smoke-test-B-partial-same (for exchange benchmarks)
+  Cloning smoke-test-A (smoke-test-A-4753a6da-reference stripped of last(all(), 100)) into ./smoke-test-A-4753a6da-partial-last-hundred (for exchange benchmarks)
+  Cloning smoke-test-A (smoke-test-A-4753a6da-reference stripped of last(all(), 10)) into ./smoke-test-A-4753a6da-partial-last-ten (for exchange benchmarks)
+  Cloning smoke-test-A (smoke-test-A-4753a6da-reference stripped of last(all(), 1000)) into ./smoke-test-A-4753a6da-partial-last-thousand (for exchange benchmarks)
+  Cloning smoke-test-A (smoke-test-A-4753a6da-reference stripped of None) into ./smoke-test-A-4753a6da-partial-same (for exchange benchmarks)
+  Cloning smoke-test-B (smoke-test-B-cfe96b48-reference stripped of last(all(), 100)) into ./smoke-test-B-cfe96b48-partial-last-hundred (for exchange benchmarks)
+  Cloning smoke-test-B (smoke-test-B-cfe96b48-reference stripped of last(all(), 10)) into ./smoke-test-B-cfe96b48-partial-last-ten (for exchange benchmarks)
+  Cloning smoke-test-B (smoke-test-B-cfe96b48-reference stripped of last(all(), 1000)) into ./smoke-test-B-cfe96b48-partial-last-thousand (for exchange benchmarks)
+  Cloning smoke-test-B (smoke-test-B-cfe96b48-reference stripped of None) into ./smoke-test-B-cfe96b48-partial-same (for exchange benchmarks)
   $ cd ..
 
 setup a copy of the asv repo
@@ -37,5 +37,5 @@
   $ cd test-asv
   $ cat << EOF > repos.make
   > SOURCE="$TESTTMP/references"
-  > all: repos/smoke-test-A.benchrepo repos/smoke-test-B.benchrepo
+  > all: repos/smoke-test-A-4753a6da.benchrepo repos/smoke-test-B-cfe96b48.benchrepo
   > 
@@ -41,16 +41,16 @@
   > 
-  > repos/smoke-test-A.benchrepo:
-  > 	(cd repos; tar xf \$(SOURCE)/smoke-test-A-reference.tar --warning=no-timestamp; hg -R smoke-test-A-reference update --quiet tip)
-  > 	(cd repos/.cache/; tar xf \$(SOURCE)/smoke-test-A-partial-last-hundred.tar --warning=no-timestamp )
-  > 	(cd repos/.cache/; tar xf \$(SOURCE)/smoke-test-A-partial-last-ten.tar --warning=no-timestamp )
-  > 	(cd repos/.cache/; tar xf \$(SOURCE)/smoke-test-A-partial-last-thousand.tar --warning=no-timestamp )
-  > 	(cd repos/.cache/; tar xf \$(SOURCE)/smoke-test-A-partial-same.tar --warning=no-timestamp )
-  > repos/smoke-test-B.benchrepo:
-  > 	(cd repos; tar xf \$(SOURCE)/smoke-test-B-reference.tar --warning=no-timestamp; hg -R smoke-test-B-reference update --quiet tip)
-  > 	(cd repos/.cache/; tar xf \$(SOURCE)/smoke-test-B-partial-last-hundred.tar --warning=no-timestamp )
-  > 	(cd repos/.cache/; tar xf \$(SOURCE)/smoke-test-B-partial-last-ten.tar --warning=no-timestamp )
-  > 	(cd repos/.cache/; tar xf \$(SOURCE)/smoke-test-B-partial-last-thousand.tar --warning=no-timestamp )
-  > 	(cd repos/.cache/; tar xf \$(SOURCE)/smoke-test-B-partial-same.tar --warning=no-timestamp )
+  > repos/smoke-test-A-4753a6da.benchrepo:
+  > 	(cd repos; tar xf \$(SOURCE)/smoke-test-A-4753a6da-reference.tar --warning=no-timestamp; hg -R smoke-test-A-4753a6da-reference update --quiet tip)
+  > 	(cd repos/.cache/; tar xf \$(SOURCE)/smoke-test-A-4753a6da-partial-last-hundred.tar --warning=no-timestamp )
+  > 	(cd repos/.cache/; tar xf \$(SOURCE)/smoke-test-A-4753a6da-partial-last-ten.tar --warning=no-timestamp )
+  > 	(cd repos/.cache/; tar xf \$(SOURCE)/smoke-test-A-4753a6da-partial-last-thousand.tar --warning=no-timestamp )
+  > 	(cd repos/.cache/; tar xf \$(SOURCE)/smoke-test-A-4753a6da-partial-same.tar --warning=no-timestamp )
+  > repos/smoke-test-B-cfe96b48.benchrepo:
+  > 	(cd repos; tar xf \$(SOURCE)/smoke-test-B-cfe96b48-reference.tar --warning=no-timestamp; hg -R smoke-test-B-cfe96b48-reference update --quiet tip)
+  > 	(cd repos/.cache/; tar xf \$(SOURCE)/smoke-test-B-cfe96b48-partial-last-hundred.tar --warning=no-timestamp )
+  > 	(cd repos/.cache/; tar xf \$(SOURCE)/smoke-test-B-cfe96b48-partial-last-ten.tar --warning=no-timestamp )
+  > 	(cd repos/.cache/; tar xf \$(SOURCE)/smoke-test-B-cfe96b48-partial-last-thousand.tar --warning=no-timestamp )
+  > 	(cd repos/.cache/; tar xf \$(SOURCE)/smoke-test-B-cfe96b48-partial-same.tar --warning=no-timestamp )
   > EOF
 
 setup appropriate virtual env
@@ -121,14 +121,14 @@
   + mkdir -p repos/
   + mkdir -p repos/.cache
   + make MAKE_VERBOSE=1 -f repos.make
-  (cd repos; tar xf "$TESTTMP/references"/smoke-test-A-reference.tar --warning=no-timestamp; hg -R smoke-test-A-reference update --quiet tip)
-  (cd repos/.cache/; tar xf "$TESTTMP/references"/smoke-test-A-partial-last-hundred.tar --warning=no-timestamp )
-  (cd repos/.cache/; tar xf "$TESTTMP/references"/smoke-test-A-partial-last-ten.tar --warning=no-timestamp )
-  (cd repos/.cache/; tar xf "$TESTTMP/references"/smoke-test-A-partial-last-thousand.tar --warning=no-timestamp )
-  (cd repos/.cache/; tar xf "$TESTTMP/references"/smoke-test-A-partial-same.tar --warning=no-timestamp )
-  (cd repos; tar xf "$TESTTMP/references"/smoke-test-B-reference.tar --warning=no-timestamp; hg -R smoke-test-B-reference update --quiet tip)
-  (cd repos/.cache/; tar xf "$TESTTMP/references"/smoke-test-B-partial-last-hundred.tar --warning=no-timestamp )
-  (cd repos/.cache/; tar xf "$TESTTMP/references"/smoke-test-B-partial-last-ten.tar --warning=no-timestamp )
-  (cd repos/.cache/; tar xf "$TESTTMP/references"/smoke-test-B-partial-last-thousand.tar --warning=no-timestamp )
-  (cd repos/.cache/; tar xf "$TESTTMP/references"/smoke-test-B-partial-same.tar --warning=no-timestamp )
+  (cd repos; tar xf "$TESTTMP/references"/smoke-test-A-4753a6da-reference.tar --warning=no-timestamp; hg -R smoke-test-A-4753a6da-reference update --quiet tip)
+  (cd repos/.cache/; tar xf "$TESTTMP/references"/smoke-test-A-4753a6da-partial-last-hundred.tar --warning=no-timestamp )
+  (cd repos/.cache/; tar xf "$TESTTMP/references"/smoke-test-A-4753a6da-partial-last-ten.tar --warning=no-timestamp )
+  (cd repos/.cache/; tar xf "$TESTTMP/references"/smoke-test-A-4753a6da-partial-last-thousand.tar --warning=no-timestamp )
+  (cd repos/.cache/; tar xf "$TESTTMP/references"/smoke-test-A-4753a6da-partial-same.tar --warning=no-timestamp )
+  (cd repos; tar xf "$TESTTMP/references"/smoke-test-B-cfe96b48-reference.tar --warning=no-timestamp; hg -R smoke-test-B-cfe96b48-reference update --quiet tip)
+  (cd repos/.cache/; tar xf "$TESTTMP/references"/smoke-test-B-cfe96b48-partial-last-hundred.tar --warning=no-timestamp )
+  (cd repos/.cache/; tar xf "$TESTTMP/references"/smoke-test-B-cfe96b48-partial-last-ten.tar --warning=no-timestamp )
+  (cd repos/.cache/; tar xf "$TESTTMP/references"/smoke-test-B-cfe96b48-partial-last-thousand.tar --warning=no-timestamp )
+  (cd repos/.cache/; tar xf "$TESTTMP/references"/smoke-test-B-cfe96b48-partial-same.tar --warning=no-timestamp )
   + ./repo-scripts/rename-reference-directories repos
@@ -134,6 +134,6 @@
   + ./repo-scripts/rename-reference-directories repos
-  Renaming repos/smoke-test-A-reference into repos/smoke-test-A
-  Renaming repos/smoke-test-B-reference into repos/smoke-test-B
+  Renaming repos/smoke-test-A-4753a6da-reference into repos/smoke-test-A-4753a6da
+  Renaming repos/smoke-test-B-cfe96b48-reference into repos/smoke-test-B-cfe96b48
   + python create_skip_file.py
   - Fetching recent changes
   - Creating environments
@@ -144,5 +144,5 @@
   - Running 1 total benchmarks (1 commits * 1 environments * 1 benchmarks)
   [  0.00%] - For mercurial commit fe3ca1e6:
   [  0.00%] -- Benchmarking virtualenv-py2.7-pyyaml
-  [100.00%] --- Setting up utils.py:332                                         ok
+  [100.00%] --- Setting up utils.py:*                                         ok (glob)
   [100.00%] --- basic_commands.TestSuite.track_commit                           ok
@@ -148,12 +148,12 @@
   [100.00%] --- basic_commands.TestSuite.track_commit                           ok
-  [100.00%] --- ============== ===================== =====================
-                --                                 mode                   
-                -------------- -------------------------------------------
-                     repo              create                update       
-                ============== ===================== =====================
-                 smoke-test-A   * (glob)
-                 smoke-test-B   * (glob)
-                ============== ===================== =====================
+  [100.00%] --- ======================= ======== =====================
+                          repo            mode                        
+                ----------------------- -------- ---------------------
+                 smoke-test-A-4753a6da   create   * (glob)
+                 smoke-test-A-4753a6da   update   * (glob)
+                 smoke-test-B-cfe96b48   create   * (glob)
+                 smoke-test-B-cfe96b48   update   * (glob)
+                ======================= ======== =====================
   
   * (glob)
   * (glob)
diff --git a/tests/test-validate-repos.t b/tests/test-validate-repos.t
index e2512e028441c51d896e3a0849e23d2a557dd2e3_dGVzdHMvdGVzdC12YWxpZGF0ZS1yZXBvcy50..711f2e737fbb29562858cb6e82a36465208060ad_dGVzdHMvdGVzdC12YWxpZGF0ZS1yZXBvcy50 100644
--- a/tests/test-validate-repos.t
+++ b/tests/test-validate-repos.t
@@ -16,7 +16,7 @@
   $ make-reference ../some-dir/source_A repo4test_A
   hg cloning repository from: ../some-dir/source_A
   building a reference tarball
-  result available at: repo4test_A-reference.tar
+  result available at: repo4test_A-64d4574b-reference.tar
   $ make-reference ../some-dir/source_B repo4test_B
   hg cloning repository from: ../some-dir/source_B
   building a reference tarball
@@ -20,10 +20,10 @@
   $ make-reference ../some-dir/source_B repo4test_B
   hg cloning repository from: ../some-dir/source_B
   building a reference tarball
-  result available at: repo4test_B-reference.tar
+  result available at: repo4test_B-4dddee9f-reference.tar
   $ cd ..
 
 Unbundle local reference
 
   $ mkdir local-references
   $ cd local-references/
@@ -24,13 +24,11 @@
   $ cd ..
 
 Unbundle local reference
 
   $ mkdir local-references
   $ cd local-references/
-  $ tar xf ../repo-references/repo4test_A-reference.tar
-  tar: repo4test_A-reference/.hg/store/00manifest.i: time stamp * s in the future (glob)
-  $ tar xf ../repo-references/repo4test_B-reference.tar
-  tar: repo4test_B-reference/.hg/store/00manifest.i: time stamp * s in the future (glob)
+  $ tar xf ../repo-references/repo4test_A-*-reference.tar --warning=no-timestamp
+  $ tar xf ../repo-references/repo4test_B-*-reference.tar --warning=no-timestamp
   $ cd ..
 
 Define partial set
@@ -50,7 +48,7 @@
   $ mkdir partials-one
   $ cd partials-one
 
-  $ make-partial-repos ../p-config.yaml ../local-references/repo4test_A.benchrepo
-  Cloning repo4test_A (../local-references/repo4test_A-reference stripped of last(all(), 10)) into ./repo4test_A-partial-missing-last-10 (for exchange benchmarks)
-  Cloning repo4test_A (../local-references/repo4test_A-reference stripped of None) into ./repo4test_A-partial-same (for exchange benchmarks)
+  $ make-partial-repos ../p-config.yaml ../local-references/repo4test_A-*.benchrepo
+  Cloning repo4test_A (../local-references/repo4test_A-64d4574b-reference stripped of last(all(), 10)) into ./repo4test_A-64d4574b-partial-missing-last-10 (for exchange benchmarks)
+  Cloning repo4test_A (../local-references/repo4test_A-64d4574b-reference stripped of None) into ./repo4test_A-64d4574b-partial-same (for exchange benchmarks)
   $ ls -1
@@ -56,7 +54,7 @@
   $ ls -1
-  repo4test_A-partial-missing-last-10
-  repo4test_A-partial-missing-last-10.tar
-  repo4test_A-partial-same
-  repo4test_A-partial-same.tar
-  $ hg -R ../local-references/repo4test_A-reference tip -T '{rev}:{node}\n'
+  repo4test_A-64d4574b-partial-missing-last-10
+  repo4test_A-64d4574b-partial-missing-last-10.tar
+  repo4test_A-64d4574b-partial-same
+  repo4test_A-64d4574b-partial-same.tar
+  $ hg -R ../local-references/repo4test_A-*-reference tip -T '{rev}:{node}\n'
   52:99cae3713489c109d3f91f755bd6d6ea0363d0d5
@@ -62,3 +60,3 @@
   52:99cae3713489c109d3f91f755bd6d6ea0363d0d5
-  $ hg -R repo4test_A-partial-missing-last-10 tip -T '{rev}:{node}\n'
+  $ hg -R repo4test_A-*-partial-missing-last-10 tip -T '{rev}:{node}\n'
   42:511665bca184225b9a5d21d3ffd595045cc2fde7
@@ -64,3 +62,3 @@
   42:511665bca184225b9a5d21d3ffd595045cc2fde7
-  $ cat repo4test_A-partial-missing-last-10/.hg/ASV_EXPECTED_TIP_REV_HASH
+  $ cat repo4test_A-*-partial-missing-last-10/.hg/ASV_EXPECTED_TIP_REV_HASH
   42 511665bca184225b9a5d21d3ffd595045cc2fde7 (no-eol)
@@ -66,3 +64,3 @@
   42 511665bca184225b9a5d21d3ffd595045cc2fde7 (no-eol)
-  $ hg -R repo4test_A-partial-same tip -T '{rev}:{node}\n'
+  $ hg -R repo4test_A-*-partial-same tip -T '{rev}:{node}\n'
   52:99cae3713489c109d3f91f755bd6d6ea0363d0d5
@@ -68,5 +66,5 @@
   52:99cae3713489c109d3f91f755bd6d6ea0363d0d5
-  $ cat repo4test_A-partial-same/.hg/ASV_EXPECTED_TIP_REV_HASH
+  $ cat repo4test_A-*-partial-same/.hg/ASV_EXPECTED_TIP_REV_HASH
   52 99cae3713489c109d3f91f755bd6d6ea0363d0d5 (no-eol)
 
   $ cd ..
@@ -76,7 +74,7 @@
 
   $ cd partials-one
   $ validate-repos .
-  ./repo4test_A-partial-missing-last-10:
+  ./repo4test_A-64d4574b-partial-missing-last-10:
       fncache: ok
       tip: ok
   
@@ -80,7 +78,7 @@
       fncache: ok
       tip: ok
   
-  ./repo4test_A-partial-same:
+  ./repo4test_A-64d4574b-partial-same:
       fncache: ok
       tip: ok
   
@@ -88,5 +86,9 @@
 Test checking partial repositories empty fncache
 ------------------------------------------------
 
-  $ > ./repo4test_A-partial-missing-last-10/.hg/store/fncache
+wildcard + echo seems not portable enough
+  $ cd ./repo4test_A-*-partial-missing-last-10/.hg/store
+  $ rm fncache
+  $ touch fncache
+  $ cd ../../..
 
@@ -92,5 +94,5 @@
 
-  $ wc -c ./repo4test_A-partial-missing-last-10/.hg/store/fncache
-  0 ./repo4test_A-partial-missing-last-10/.hg/store/fncache
+  $ wc -c ./repo4test_A-*-partial-missing-last-10/.hg/store/fncache
+  0 ./repo4test_A-64d4574b-partial-missing-last-10/.hg/store/fncache
 
   $ validate-repos .
@@ -95,6 +97,6 @@
 
   $ validate-repos .
-  ./repo4test_A-partial-missing-last-10:
+  ./repo4test_A-64d4574b-partial-missing-last-10:
       fncache: KO
       tip: ok
   
@@ -98,9 +100,9 @@
       fncache: KO
       tip: ok
   
-  ./repo4test_A-partial-same:
+  ./repo4test_A-64d4574b-partial-same:
       fncache: ok
       tip: ok
   
   [1]
 
@@ -102,7 +104,7 @@
       fncache: ok
       tip: ok
   
   [1]
 
-  $ rm ./repo4test_A-partial-missing-last-10/.hg/store/fncache
+  $ rm ./repo4test_A-*-partial-missing-last-10/.hg/store/fncache
   $ validate-repos .
@@ -108,5 +110,5 @@
   $ validate-repos .
-  ./repo4test_A-partial-missing-last-10:
+  ./repo4test_A-64d4574b-partial-missing-last-10:
       fncache: KO
       tip: ok
   
@@ -110,7 +112,7 @@
       fncache: KO
       tip: ok
   
-  ./repo4test_A-partial-same:
+  ./repo4test_A-64d4574b-partial-same:
       fncache: ok
       tip: ok
   
@@ -119,6 +121,6 @@
 Test checking partial repositories bad tip
 ------------------------------------------
 
-  $ hg -R repo4test_A-partial-same branch "my-branch"
+  $ hg -R repo4test_A-*-partial-same branch "my-branch"
   marked working directory as branch my-branch
   (branches are permanent and global, did you want a bookmark?)
@@ -123,4 +125,4 @@
   marked working directory as branch my-branch
   (branches are permanent and global, did you want a bookmark?)
-  $ hg -R repo4test_A-partial-same commit -m "New branch"
+  $ hg -R repo4test_A-*-partial-same commit -m "New branch"
 
@@ -126,5 +128,5 @@
 
-  $ hg -R repo4test_A-partial-same tip -T '{rev}:{node}\n'
+  $ hg -R repo4test_A-*-partial-same tip -T '{rev}:{node}\n'
   53:3bee1aa8c6ea80203fb80e582e9f75f7ab9e6cfa
 
   $ validate-repos .
@@ -128,7 +130,7 @@
   53:3bee1aa8c6ea80203fb80e582e9f75f7ab9e6cfa
 
   $ validate-repos .
-  ./repo4test_A-partial-missing-last-10:
+  ./repo4test_A-64d4574b-partial-missing-last-10:
       fncache: KO
       tip: ok
   
@@ -132,7 +134,7 @@
       fncache: KO
       tip: ok
   
-  ./repo4test_A-partial-same:
+  ./repo4test_A-64d4574b-partial-same:
       fncache: ok
       tip: KO