Re: [PATCHv2 01/12] git p4 test: remove bash-ism of combined export/assignment

2012-09-17 Thread Luke Diamand

On 17/09/12 05:50, Junio C Hamano wrote:

Luke Diamandl...@diamand.org  writes:


On 16/09/12 07:05, Junio C Hamano wrote:

Luke Diamandl...@diamand.org   writes:


Looks good to me, ack.


Thanks; is this an ack for the entire series, or are you expecting
further back-and-forth with Pete before the whole thing is ready?


An ack for the whole series. I'm just going through the rest of the
patches now but I don't expect to find any issues.


As long as the parties involved in the part of the system can agree
that this series is basically sound, I'd be happy to merge it
down. Minor issues can be fixed up as follow-up patches.


Basically sound as far as I'm concerned.



Thanks.  Will merge it to 'next'.



--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCHv2 01/12] git p4 test: remove bash-ism of combined export/assignment

2012-09-16 Thread Junio C Hamano
Luke Diamand l...@diamand.org writes:

 Looks good to me, ack.

Thanks; is this an ack for the entire series, or are you expecting
further back-and-forth with Pete before the whole thing is ready?
--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCHv2 01/12] git p4 test: remove bash-ism of combined export/assignment

2012-09-16 Thread Luke Diamand

On 16/09/12 07:05, Junio C Hamano wrote:

Luke Diamandl...@diamand.org  writes:


Looks good to me, ack.


Thanks; is this an ack for the entire series, or are you expecting
further back-and-forth with Pete before the whole thing is ready?


An ack for the whole series. I'm just going through the rest of the 
patches now but I don't expect to find any issues.





--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCHv2 01/12] git p4 test: remove bash-ism of combined export/assignment

2012-09-16 Thread Junio C Hamano
Luke Diamand l...@diamand.org writes:

 On 16/09/12 07:05, Junio C Hamano wrote:
 Luke Diamandl...@diamand.org  writes:

 Looks good to me, ack.

 Thanks; is this an ack for the entire series, or are you expecting
 further back-and-forth with Pete before the whole thing is ready?

 An ack for the whole series. I'm just going through the rest of the
 patches now but I don't expect to find any issues.

As long as the parties involved in the part of the system can agree
that this series is basically sound, I'd be happy to merge it
down. Minor issues can be fixed up as follow-up patches.

Thanks.  Will merge it to 'next'.

--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCHv2 01/12] git p4 test: remove bash-ism of combined export/assignment

2012-09-15 Thread Luke Diamand

Looks good to me, ack.

On 09/09/12 21:16, Pete Wyckoff wrote:

Signed-off-by: Pete Wyckoffp...@padd.com
---
  t/lib-git-p4.sh | 7 ---
  1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/t/lib-git-p4.sh b/t/lib-git-p4.sh
index 2d753ab..482eeac 100644
--- a/t/lib-git-p4.sh
+++ b/t/lib-git-p4.sh
@@ -26,9 +26,10 @@ testid=${this_test#t}
  git_p4_test_start=9800
  P4DPORT=$((10669 + ($testid - $git_p4_test_start)))

-export P4PORT=localhost:$P4DPORT
-export P4CLIENT=client
-export P4EDITOR=:
+P4PORT=localhost:$P4DPORT
+P4CLIENT=client
+P4EDITOR=:
+export P4PORT P4CLIENT P4EDITOR

  db=$TRASH_DIRECTORY/db
  cli=$(test-path-utils real_path $TRASH_DIRECTORY/cli)


--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html