diff tests/test-empty @ 6944:7e5f3480c45b

fix regression on empty repo cloning introduced by 0642d9d7ec80 The store directory wasn't copied. Unconditionally create the directories instead.
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Fri, 29 Aug 2008 16:50:11 +0200
parents 2b77ea66fe70
children
line wrap: on
line diff
--- a/tests/test-empty	Thu Aug 28 13:06:24 2008 +0200
+++ b/tests/test-empty	Fri Aug 29 16:50:11 2008 +0200
@@ -1,7 +1,17 @@
 #!/bin/sh
 
-hg init
+hg init a
+cd a
 hg log
 hg grep wah
 hg manifest
 hg verify
+ls .hg
+ls .hg/store
+
+cd ..
+hg clone a b
+cd b
+hg verify
+ls .hg
+ls .hg/store