diff options
author | Fabian Emmes <fabian.emmes@rwth-aachen.de> | 2008-07-17 19:00:26 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-19 11:17:42 -0700 |
commit | 374488f31d70e6f009abf533a1c0a8077301f18d (patch) | |
tree | d059ec8fa313f9809ea7bc3878f6bd09b11f255f /t | |
parent | 78568448239ea09c8a78b72741863be1148c4660 (diff) | |
download | git-374488f31d70e6f009abf533a1c0a8077301f18d.tar.gz |
Testsuite: Unset CVS_SERVER
The CVS_SERVER environment variable can cause some of the cvsimport tests
to fail. So unset this variable at the beginning of the test script.
Signed-off-by: Fabian Emmes <fabian.emmes@rwth-aachen.de>
Signed-off-by: Lars Noschinski <lars@public.noschinski.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t9600-cvsimport.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/t9600-cvsimport.sh b/t/t9600-cvsimport.sh index 1e01e5c748..0d7786a8c7 100755 --- a/t/t9600-cvsimport.sh +++ b/t/t9600-cvsimport.sh @@ -5,6 +5,7 @@ test_description='git-cvsimport basic tests' CVSROOT=$(pwd)/cvsroot export CVSROOT +unset CVS_SERVER # for clean cvsps cache HOME=$(pwd) export HOME |