On Tue, 4 Dec 2007 15:39:47 +0000 (GMT), Johannes Schindelin <Johannes.Schindelin@xxxxxx> wrote: > Hi, > > On Tue, 4 Dec 2007, H.Merijn Brand wrote: > > > + + pwd > > GIT_EXEC_PATH=/pro/3gl/LINUX/git-1.5.3.7/t/.. > > + + pwd > > GIT_TEMPLATE_DIR=/pro/3gl/LINUX/git-1.5.3.7/t/../templates/blt > > + GIT_CONFIG=.git/config > > + export PATH GIT_EXEC_PATH GIT_TEMPLATE_DIR GIT_CONFIG > > + + pwd > > + pwd > > GITPERLLIB=/pro/3gl/LINUX/git-1.5.3.7/t/../perl/blib/lib:/pro/3gl/LINUX/git-1.5.3.7/t/../perl/blib/arch/auto/Git > > + export GITPERLLIB > > + test -d ../templates/blt > > + test -x ../test-chmtime > > + test=trash > > + rm -fr trash > > + test_create_repo trash > > + cd trash > > + + expr ./t0001-init.sh : .*/\(t[0-9]*\)-[^/]*$ > > this_test=t0001 > > + test_expect_success plain > > ( > > unset GIT_DIR GIT_WORK_TREE && > > mkdir plain && > > cd plain && > > git init > > ) && > > check_config plain/.git false unset > > > > * expecting success: > > ( > > unset GIT_DIR GIT_WORK_TREE && > > mkdir plain && > > cd plain && > > git init > > ) && > > check_config plain/.git false unset > > > > * FAIL 1: plain > > > > ( > > unset GIT_DIR GIT_WORK_TREE && > > mkdir plain && > > cd plain && > > git init > > ) && > > check_config plain/.git false unset > > That's not good. The relevant part here reads: I found it! unset returns false /pro/3gl/LINUX/git-1.5.3.7/t 152 > sh t0001*.sh * ok 1: plain * ok 2: plain with GIT_WORK_TREE * ok 3: plain bare * ok 4: plain bare with GIT_WORK_TREE * ok 5: GIT_DIR bare * ok 6: GIT_DIR non-bare * ok 7: GIT_DIR & GIT_WORK_TREE (1) * ok 8: GIT_DIR & GIT_WORK_TREE (2) * passed all 8 test(s) --8<--- --- t0001-init.sh.org 2007-12-04 16:55:25 +0100 +++ t0001-init.sh 2007-12-04 16:52:37 +0100 @@ -25,7 +25,7 @@ check_config () { test_expect_success 'plain' ' ( - unset GIT_DIR GIT_WORK_TREE && + unset GIT_DIR GIT_WORK_TREE ; mkdir plain && cd plain && git init @@ -35,7 +35,7 @@ test_expect_success 'plain' ' test_expect_success 'plain with GIT_WORK_TREE' ' if ( - unset GIT_DIR && + unset GIT_DIR ; mkdir plain-wt && cd plain-wt && GIT_WORK_TREE=$(pwd) git init @@ -48,7 +48,7 @@ test_expect_success 'plain with GIT_WORK test_expect_success 'plain bare' ' ( - unset GIT_DIR GIT_WORK_TREE GIT_CONFIG && + unset GIT_DIR GIT_WORK_TREE GIT_CONFIG ; mkdir plain-bare-1 && cd plain-bare-1 && git --bare init @@ -58,7 +58,7 @@ test_expect_success 'plain bare' ' test_expect_success 'plain bare with GIT_WORK_TREE' ' if ( - unset GIT_DIR GIT_CONFIG && + unset GIT_DIR GIT_CONFIG ; mkdir plain-bare-2 && cd plain-bare-2 && GIT_WORK_TREE=$(pwd) git --bare init @@ -72,7 +72,7 @@ test_expect_success 'plain bare with GIT test_expect_success 'GIT_DIR bare' ' ( - unset GIT_CONFIG && + unset GIT_CONFIG ; mkdir git-dir-bare.git && GIT_DIR=git-dir-bare.git git init ) && @@ -82,7 +82,7 @@ test_expect_success 'GIT_DIR bare' ' test_expect_success 'GIT_DIR non-bare' ' ( - unset GIT_CONFIG && + unset GIT_CONFIG ; mkdir non-bare && cd non-bare && GIT_DIR=.git git init @@ -93,7 +93,7 @@ test_expect_success 'GIT_DIR non-bare' ' test_expect_success 'GIT_DIR & GIT_WORK_TREE (1)' ' ( - unset GIT_CONFIG && + unset GIT_CONFIG ; mkdir git-dir-wt-1.git && GIT_WORK_TREE=$(pwd) GIT_DIR=git-dir-wt-1.git git init ) && @@ -103,7 +103,7 @@ test_expect_success 'GIT_DIR & GIT_WORK_ test_expect_success 'GIT_DIR & GIT_WORK_TREE (2)' ' if ( - unset GIT_CONFIG && + unset GIT_CONFIG ; mkdir git-dir-wt-2.git && GIT_WORK_TREE=$(pwd) GIT_DIR=git-dir-wt-2.git git --bare init ) -->8--- I must leave now. -- H.Merijn Brand Amsterdam Perl Mongers (http://amsterdam.pm.org/) using & porting perl 5.6.2, 5.8.x, 5.10.x on HP-UX 10.20, 11.00, 11.11, & 11.23, SuSE 10.1 & 10.2, AIX 5.2, and Cygwin. http://qa.perl.org http://mirrors.develooper.com/hpux/ http://www.test-smoke.org http://www.goldmark.org/jeff/stupid-disclaimers/ - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html