
The way Git/HTTP threads are managed is different when the SSH daemon is enabled. Make sure that all the Git/HTTP operations are working as expected by enabling also SSHD. In order to reuse the GitOverHttpServletIT logic, introduce a new abstract class and add it to the common library used by all git tests in Bazel BUILD file. Change-Id: I879881b6db5f4295c1c889a764e0c31d369463f7
21 lines
792 B
Java
21 lines
792 B
Java
// Copyright (C) 2019 The Android Open Source Project
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package com.google.gerrit.acceptance.git;
|
|
|
|
import com.google.gerrit.acceptance.UseSsh;
|
|
|
|
@UseSsh
|
|
public class GitOverHttpServletWithSshdEnabledIT extends AbstractGitOverHttpServlet {}
|