commit-graph: fix bug around octopus merges
[gitweb.git] / t / lib-git-svn.sh
index f3b478c307c99397fb180fb3d5688e1d6f257904..5d4ae629e14e668279a559527876685689cae61c 100644 (file)
@@ -69,19 +69,12 @@ svn_cmd () {
 maybe_start_httpd () {
        loc=${1-svn}
 
-       test_tristate GIT_SVN_TEST_HTTPD
-       case $GIT_SVN_TEST_HTTPD in
-       true)
+       if git env--helper --type=bool --default=false --exit-code GIT_TEST_HTTPD
+       then
                . "$TEST_DIRECTORY"/lib-httpd.sh
                LIB_HTTPD_SVN="$loc"
                start_httpd
-               ;;
-       *)
-               stop_httpd () {
-                       : noop
-               }
-               ;;
-       esac
+       fi
 }
 
 convert_to_rev_db () {
@@ -111,8 +104,7 @@ EOF
 }
 
 require_svnserve () {
-       test_tristate GIT_TEST_SVNSERVE
-       if ! test "$GIT_TEST_SVNSERVE" = true
+       if ! git env--helper --type=bool --default=false --exit-code GIT_TEST_SVNSERVE
        then
                skip_all='skipping svnserve test. (set $GIT_TEST_SVNSERVE to enable)'
                test_done