Thread (16 messages) flat view 16 messages, 4 authors, 2016-06-15

Re: [PATCH 2/2] lock_packed_refs(): allow retries when acquiring the packed-refs lock

From: Johannes Sixt <hidden>
Date: 2016-06-15 23:04:36

Am 01.05.2015 um 16:52 schrieb Michael Haggerty:
+test_expect_success 'retry acquiring packed-refs.lock' '
+	LOCK=.git/packed-refs.lock &&
+	>$LOCK &&
+	test_when_finished "rm -f $LOCK" &&
+	{
+		( sleep 1 ; rm -f $LOCK ) &
+	} &&
I haven't tested yet, but I think that this will be problematic on 
Windows: a directory cannot be removed if it is the current directory of 
a process. Here, the sub-shell process is alive for a second. If the 
remainder of the test script completes before the process dies, the test 
directory cannot be removed.

How about this:

	test_when_finished "wait; rm -f $LOCK" &&
	{ sleep 1 & } &&
	...
+	git -c core.packedrefstimeout=3000 pack-refs --all --prune
+'
+
  test_done
-- Hannes
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help