git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH 0/3] Update HTTPD/daemon tests for new push.default
@ 2013-01-16  2:05 Brian Gernhardt
  2013-01-16  2:05 ` [PATCH 1/3] t5550: do not assume the "matching" push is the default Brian Gernhardt
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Brian Gernhardt @ 2013-01-16  2:05 UTC (permalink / raw)
  To: Git List; +Cc: Junio C Hamano, Brian Gernhardt

I saw a string of these commits already, but found a few more when running
the test suite.

Brian Gernhardt (3):
  t5550: do not assume the "matching" push is the default
  t5551: do not assume the "matching" push is the default
  t5570: do not assume the "matching" push is the default

 t/t5550-http-fetch.sh | 1 +
 t/t5551-http-fetch.sh | 1 +
 t/t5570-git-daemon.sh | 1 +
 3 files changed, 3 insertions(+)

-- 
1.8.1.rc1.222.gec797b3

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/3] t5550: do not assume the "matching" push is the default
  2013-01-16  2:05 [PATCH 0/3] Update HTTPD/daemon tests for new push.default Brian Gernhardt
@ 2013-01-16  2:05 ` Brian Gernhardt
  2013-01-16  2:05 ` [PATCH 2/3] t5551: " Brian Gernhardt
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Brian Gernhardt @ 2013-01-16  2:05 UTC (permalink / raw)
  To: Git List; +Cc: Junio C Hamano, Brian Gernhardt

Signed-off-by: Brian Gernhardt <brian@gernhardtsoftware.com>
---
 t/t5550-http-fetch.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/t/t5550-http-fetch.sh b/t/t5550-http-fetch.sh
index 80d20c8..f7d0f14 100755
--- a/t/t5550-http-fetch.sh
+++ b/t/t5550-http-fetch.sh
@@ -13,6 +13,7 @@ LIB_HTTPD_PORT=${LIB_HTTPD_PORT-'5550'}
 start_httpd
 
 test_expect_success 'setup repository' '
+	git config push.default matching &&
 	echo content1 >file &&
 	git add file &&
 	git commit -m one
-- 
1.8.1.rc1.222.gec797b3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/3] t5551: do not assume the "matching" push is the default
  2013-01-16  2:05 [PATCH 0/3] Update HTTPD/daemon tests for new push.default Brian Gernhardt
  2013-01-16  2:05 ` [PATCH 1/3] t5550: do not assume the "matching" push is the default Brian Gernhardt
@ 2013-01-16  2:05 ` Brian Gernhardt
  2013-01-16  2:05 ` [PATCH 3/3] t5570: " Brian Gernhardt
  2013-01-16  2:39 ` [PATCH 0/3] Update HTTPD/daemon tests for new push.default Junio C Hamano
  3 siblings, 0 replies; 5+ messages in thread
From: Brian Gernhardt @ 2013-01-16  2:05 UTC (permalink / raw)
  To: Git List; +Cc: Junio C Hamano, Brian Gernhardt

Signed-off-by: Brian Gernhardt <brian@gernhardtsoftware.com>
---
 t/t5551-http-fetch.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/t/t5551-http-fetch.sh b/t/t5551-http-fetch.sh
index c5cd2e3..1b55086 100755
--- a/t/t5551-http-fetch.sh
+++ b/t/t5551-http-fetch.sh
@@ -13,6 +13,7 @@ LIB_HTTPD_PORT=${LIB_HTTPD_PORT-'5551'}
 start_httpd
 
 test_expect_success 'setup repository' '
+	git config push.default matching &&
 	echo content >file &&
 	git add file &&
 	git commit -m one
-- 
1.8.1.rc1.222.gec797b3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 3/3] t5570: do not assume the "matching" push is the default
  2013-01-16  2:05 [PATCH 0/3] Update HTTPD/daemon tests for new push.default Brian Gernhardt
  2013-01-16  2:05 ` [PATCH 1/3] t5550: do not assume the "matching" push is the default Brian Gernhardt
  2013-01-16  2:05 ` [PATCH 2/3] t5551: " Brian Gernhardt
@ 2013-01-16  2:05 ` Brian Gernhardt
  2013-01-16  2:39 ` [PATCH 0/3] Update HTTPD/daemon tests for new push.default Junio C Hamano
  3 siblings, 0 replies; 5+ messages in thread
From: Brian Gernhardt @ 2013-01-16  2:05 UTC (permalink / raw)
  To: Git List; +Cc: Junio C Hamano, Brian Gernhardt

Signed-off-by: Brian Gernhardt <brian@gernhardtsoftware.com>
---
 t/t5570-git-daemon.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/t/t5570-git-daemon.sh b/t/t5570-git-daemon.sh
index a3a4e47..f01edff 100755
--- a/t/t5570-git-daemon.sh
+++ b/t/t5570-git-daemon.sh
@@ -8,6 +8,7 @@ LIB_GIT_DAEMON_PORT=${LIB_GIT_DAEMON_PORT-5570}
 start_git_daemon
 
 test_expect_success 'setup repository' '
+	git config push.default matching &&
 	echo content >file &&
 	git add file &&
 	git commit -m one
-- 
1.8.1.rc1.222.gec797b3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 0/3] Update HTTPD/daemon tests for new push.default
  2013-01-16  2:05 [PATCH 0/3] Update HTTPD/daemon tests for new push.default Brian Gernhardt
                   ` (2 preceding siblings ...)
  2013-01-16  2:05 ` [PATCH 3/3] t5570: " Brian Gernhardt
@ 2013-01-16  2:39 ` Junio C Hamano
  3 siblings, 0 replies; 5+ messages in thread
From: Junio C Hamano @ 2013-01-16  2:39 UTC (permalink / raw)
  To: Brian Gernhardt; +Cc: Git List

These are tests that I do not usually run myself.

Thanks for catching and correcting them.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-01-16  2:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-16  2:05 [PATCH 0/3] Update HTTPD/daemon tests for new push.default Brian Gernhardt
2013-01-16  2:05 ` [PATCH 1/3] t5550: do not assume the "matching" push is the default Brian Gernhardt
2013-01-16  2:05 ` [PATCH 2/3] t5551: " Brian Gernhardt
2013-01-16  2:05 ` [PATCH 3/3] t5570: " Brian Gernhardt
2013-01-16  2:39 ` [PATCH 0/3] Update HTTPD/daemon tests for new push.default Junio C Hamano

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).