* [PATCH] git svn: add (failing) test for a git svn gc followed by a git svn mkdirs
@ 2009-12-23 4:08 Robert Zeh
2009-12-23 6:18 ` Eric Wong
0 siblings, 1 reply; 2+ messages in thread
From: Robert Zeh @ 2009-12-23 4:08 UTC (permalink / raw)
To: Eric Wong; +Cc: git
git svn gc will compress the unhandled.log files that git svn mkdirs reads,
causing git svn mkdirs to skip directory creation.
---
t/t9152-svn-empty-dirs-after-gc.sh | 41 ++++++++++++++++++++++++++++++++++++
1 files changed, 41 insertions(+), 0 deletions(-)
create mode 100755 t/t9152-svn-empty-dirs-after-gc.sh
diff --git a/t/t9152-svn-empty-dirs-after-gc.sh
b/t/t9152-svn-empty-dirs-after-gc.sh
new file mode 100755
index 0000000..9ac6ea9
--- /dev/null
+++ b/t/t9152-svn-empty-dirs-after-gc.sh
@@ -0,0 +1,41 @@
+#!/bin/sh
+#
+# Copyright (c) 2009 Robert Zeh
+
+test_description='git svn creates empty directories, calls git gc,
makes sure they are still empty'
+. ./lib-git-svn.sh
+
+test_expect_success 'initialize repo' '
+ for i in a b c d d/e d/e/f "weird file name"
+ do
+ svn_cmd mkdir -m "mkdir $i" "$svnrepo"/"$i"
+ done
+'
+
+test_expect_success 'clone' 'git svn clone "$svnrepo" cloned'
+
+test_expect_success 'git svn gc runs' '
+ (
+ cd cloned &&
+ git svn gc
+ )
+'
+
+test_expect_success 'git svn mkdirs recreates empty directories after
git svn gc' '
+ (
+ cd cloned &&
+ rm -r * &&
+ git svn mkdirs &&
+ for i in a b c d d/e d/e/f "weird file name"
+ do
+ if ! test -d "$i"
+ then
+ echo >&2 "$i does not exist"
+ exit 1
+ fi
+ done
+ )
+'
+
+
+test_done
--
1.6.6.rc3.dirty
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] git svn: add (failing) test for a git svn gc followed by a git svn mkdirs
2009-12-23 4:08 [PATCH] git svn: add (failing) test for a git svn gc followed by a git svn mkdirs Robert Zeh
@ 2009-12-23 6:18 ` Eric Wong
0 siblings, 0 replies; 2+ messages in thread
From: Eric Wong @ 2009-12-23 6:18 UTC (permalink / raw)
To: Robert Zeh; +Cc: git
Robert Zeh <robert.a.zeh@gmail.com> wrote:
> git svn gc will compress the unhandled.log files that git svn mkdirs reads,
> causing git svn mkdirs to skip directory creation.
> ---
> t/t9152-svn-empty-dirs-after-gc.sh | 41 ++++++++++++++++++++++++++++++++++++
> 1 files changed, 41 insertions(+), 0 deletions(-)
> create mode 100755 t/t9152-svn-empty-dirs-after-gc.sh
Hi Robert,
I actually got impatient over the weekend and committed a test case and
fix. I believe I Cc-ed you on it... But your test case might be
cleaner, but yes, same things Junio said.
--
Eric Wong
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-12-23 6:18 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-23 4:08 [PATCH] git svn: add (failing) test for a git svn gc followed by a git svn mkdirs Robert Zeh
2009-12-23 6:18 ` Eric Wong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox