From e20acd9f7ab70e4795bdfaf7bf820cf158e139a2 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 4 Feb 2014 17:34:05 -0400 Subject: [PATCH] devblog --- doc/devblog/day_107__TDD.mdwn | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 doc/devblog/day_107__TDD.mdwn diff --git a/doc/devblog/day_107__TDD.mdwn b/doc/devblog/day_107__TDD.mdwn new file mode 100644 index 0000000000..5e0be8da92 --- /dev/null +++ b/doc/devblog/day_107__TDD.mdwn @@ -0,0 +1,10 @@ +A more test driven day than usual. Yesterday I noticed a test case was +failing on Windows in a way not related to what it was intended to test, +and fixed the test case to not fail.. But knew I'd need to get to the +bottom of what broke it eventually. + +Digging into that today, I eventually (after rather a long time stuck) +determined the bug involved automatic conflict resolution, but only +happened on systems without symlink support. This let me reproduce it on +FAT outside Windows and do some fast TDD iterations in a much less +unweildly environment and fix the bug.