* Tests with broken && chains in pu
@ 2010-04-04 20:08 Johannes Sixt
2010-04-04 20:15 ` Sverre Rabbelier
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Johannes Sixt @ 2010-04-04 20:08 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git, Chris Webb, Sverre Rabbelier
Junio,
two commits in pu currently add tests with broken && chains:
abbfd017 in cw/ws-indent-with-tab:
diff --git a/t/t4015-diff-whitespace.sh b/t/t4015-diff-whitespace.sh
index 9e57f80..e92eab0 100755
--- a/t/t4015-diff-whitespace.sh
+++ b/t/t4015-diff-whitespace.sh
@@ -354,7 +354,7 @@ test_expect_success 'check tabs and spaces as indentation (indent-with-non-tab:
test_expect_success 'check tabs as indentation (tab-in-indent: off)' '
- git config core.whitespace "-tab-in-indent"
+ git config core.whitespace "-tab-in-indent" &&
echo " foo ();" > x &&
git diff --check
@@ -378,7 +378,7 @@ test_expect_success 'check tabs and spaces as indentation (tab-in-indent: on)' '
test_expect_success 'check tab-in-indent and indent-with-non-tab conflict' '
- git config core.whitespace "tab-in-indent,indent-with-non-tab"
+ git config core.whitespace "tab-in-indent,indent-with-non-tab" &&
echo "foo ();" > x &&
test_must_fail git diff --check
@@ -386,7 +386,7 @@ test_expect_success 'check tab-in-indent and indent-with-non-tab conflict' '
test_expect_success 'check tab-in-indent excluded from wildcard whitespace attribute' '
- git config --unset core.whitespace
+ git config --unset core.whitespace &&
echo "x whitespace" > .gitattributes &&
echo " foo ();" > x &&
git diff --check &&
c8eeb6301 in sr/remote-helper-export
diff --git a/t/t5800-remote-helpers.sh b/t/t5800-remote-helpers.sh
index 33f546b..eb31709 100755
--- a/t/t5800-remote-helpers.sh
+++ b/t/t5800-remote-helpers.sh
@@ -9,7 +9,7 @@ test_description='Test remote-helper import and export commands'
test_expect_success 'setup repository' '
git init --bare server/.git &&
- git clone server public
+ git clone server public &&
(cd public &&
echo content >file &&
git add file &&
@@ -18,7 +18,7 @@ test_expect_success 'setup repository' '
'
test_expect_success 'cloning from local repo' '
- git clone "testgit::${PWD}/server" localclone
+ git clone "testgit::${PWD}/server" localclone &&
test_cmp public/file localclone/file
'
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: Tests with broken && chains in pu
2010-04-04 20:08 Tests with broken && chains in pu Johannes Sixt
@ 2010-04-04 20:15 ` Sverre Rabbelier
2010-04-04 20:41 ` Johannes Sixt
2010-04-04 20:45 ` Chris Webb
2010-04-04 21:28 ` Junio C Hamano
2 siblings, 1 reply; 5+ messages in thread
From: Sverre Rabbelier @ 2010-04-04 20:15 UTC (permalink / raw)
To: Johannes Sixt; +Cc: Junio C Hamano, git, Chris Webb
Heya,
On Sun, Apr 4, 2010 at 15:08, Johannes Sixt <j6t@kdbg.org> wrote:
> two commits in pu currently add tests with broken && chains:
> diff --git a/t/t5800-remote-helpers.sh b/t/t5800-remote-helpers.sh
> index 33f546b..eb31709 100755
> --- a/t/t5800-remote-helpers.sh
> +++ b/t/t5800-remote-helpers.sh
> @@ -9,7 +9,7 @@ test_description='Test remote-helper import and export commands'
>
> test_expect_success 'setup repository' '
> git init --bare server/.git &&
> - git clone server public
> + git clone server public &&
> (cd public &&
> echo content >file &&
> git add file &&
> @@ -18,7 +18,7 @@ test_expect_success 'setup repository' '
> '
>
> test_expect_success 'cloning from local repo' '
> - git clone "testgit::${PWD}/server" localclone
> + git clone "testgit::${PWD}/server" localclone &&
> test_cmp public/file localclone/file
> '
Thanks for noticing, may I ask how you noticed? Do you have a script
or was it manual review?
--
Cheers,
Sverre Rabbelier
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Tests with broken && chains in pu
2010-04-04 20:15 ` Sverre Rabbelier
@ 2010-04-04 20:41 ` Johannes Sixt
0 siblings, 0 replies; 5+ messages in thread
From: Johannes Sixt @ 2010-04-04 20:41 UTC (permalink / raw)
To: Sverre Rabbelier; +Cc: Junio C Hamano, git, Chris Webb
On Sonntag, 4. April 2010, Sverre Rabbelier wrote:
> Thanks for noticing, may I ask how you noticed? Do you have a script
> or was it manual review?
It was manual review. I reviewed the patches in pu because I noticed a broken
&& chain in a recently submitted patch, but I didn't remember which one it
was. So I took the time to look at all new test cases in pu after Junio's
recent What's in git message.
-- Hannes
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Tests with broken && chains in pu
2010-04-04 20:08 Tests with broken && chains in pu Johannes Sixt
2010-04-04 20:15 ` Sverre Rabbelier
@ 2010-04-04 20:45 ` Chris Webb
2010-04-04 21:28 ` Junio C Hamano
2 siblings, 0 replies; 5+ messages in thread
From: Chris Webb @ 2010-04-04 20:45 UTC (permalink / raw)
To: Johannes Sixt; +Cc: Junio C Hamano, git, Sverre Rabbelier
Johannes Sixt <j6t@kdbg.org> writes:
> two commits in pu currently add tests with broken && chains:
> abbfd017 in cw/ws-indent-with-tab:
Thanks for spotting this mistake Johannes. Should I resubmit a corrected
version of the patch, Junio, or do you prefer to squash fixups directly into
the pu branch?
Best wishes,
Chris.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Tests with broken && chains in pu
2010-04-04 20:08 Tests with broken && chains in pu Johannes Sixt
2010-04-04 20:15 ` Sverre Rabbelier
2010-04-04 20:45 ` Chris Webb
@ 2010-04-04 21:28 ` Junio C Hamano
2 siblings, 0 replies; 5+ messages in thread
From: Junio C Hamano @ 2010-04-04 21:28 UTC (permalink / raw)
To: Johannes Sixt; +Cc: Junio C Hamano, git, Chris Webb, Sverre Rabbelier
Thanks; will squash these in and rebuild the topics.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-04-04 21:28 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-04 20:08 Tests with broken && chains in pu Johannes Sixt
2010-04-04 20:15 ` Sverre Rabbelier
2010-04-04 20:41 ` Johannes Sixt
2010-04-04 20:45 ` Chris Webb
2010-04-04 21:28 ` Junio C Hamano
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 NNTP newsgroup(s).