diff options
author | Junio C Hamano <junkio@cox.net> | 2006-07-02 16:49:12 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-02 17:15:31 -0700 |
commit | d3140f5c2a6b42361bca960f627b00264d5c7372 (patch) | |
tree | ed7f74ee60e28fd4050af20995a351b5c098775d /t | |
parent | 65a4e98a22eab9317a05d1485c7c5a9c5befd589 (diff) | |
download | git-d3140f5c2a6b42361bca960f627b00264d5c7372.tar.gz git-d3140f5c2a6b42361bca960f627b00264d5c7372.tar.xz |
Perly Git: make sure we do test the freshly built one.
We could BEGIN { push @INC, '@@INSTLIBDIR@@'; } but that is not
a good idea for normal execution. The would prevent a
workaround for a user who is trying to override an old, faulty
Git.pm installed on the system path with a newer version
installed under $HOME/.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't')
-rwxr-xr-x | t/test-lib.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index fba0c51d9..298c6caa7 100755 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -206,8 +206,9 @@ PYTHON=`sed -e '1{ PYTHONPATH=$(pwd)/../compat export PYTHONPATH } +RUNNING_GIT_TESTS=YesWeAre PERL5LIB=$(pwd)/../perl/blib/lib:$(pwd)/../perl/blib/arch/auto/Git -export PERL5LIB +export PERL5LIB RUNNING_GIT_TESTS test -d ../templates/blt || { error "You haven't built things yet, have you?" } |