diff options
author | Alexander Færøy <ahf@torproject.org> | 2021-10-25 21:03:14 +0000 |
---|---|---|
committer | Alexander Færøy <ahf@torproject.org> | 2021-10-25 21:03:14 +0000 |
commit | 04788dcf40947a01f9b8f0315f6353318f46d026 (patch) | |
tree | c85c0bf18f7404967acb26862e9bccb4677ddddf /scripts | |
parent | 91c83d1e0857b84b2cf0594270cc149246f6f15a (diff) | |
parent | 0c5128eeb24c5f9e6b62117eb668f0c7679d0fc3 (diff) | |
download | tor-04788dcf40947a01f9b8f0315f6353318f46d026.tar.gz tor-04788dcf40947a01f9b8f0315f6353318f46d026.zip |
Merge branch 'maint-0.4.6' into main
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/ci/ci-driver.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/scripts/ci/ci-driver.sh b/scripts/ci/ci-driver.sh index ff4881dd8e..9862cc08d7 100755 --- a/scripts/ci/ci-driver.sh +++ b/scripts/ci/ci-driver.sh @@ -467,10 +467,9 @@ fi if [[ "${STEM}" = "yes" ]]; then start_section "Stem" - EXCLUDE_TESTS="" - if [[ "${TOR_VER_AT_LEAST_046}" = 'yes' ]]; then - EXCLUDE_TESTS="--exclude-test control.controller.test_ephemeral_hidden_services_v2 --exclude-test control.controller.test_hidden_services_conf --exclude-test control.controller.test_with_ephemeral_hidden_services_basic_auth --exclude-test control.controller.test_without_ephemeral_hidden_services --exclude-test control.controller.test_with_ephemeral_hidden_services_basic_auth_no_credentials" - fi + # 0.3.5 and onward have now disabled onion service v2 so we need to exclude + # these Stem tests from now on. + EXCLUDE_TESTS="--exclude-test control.controller.test_ephemeral_hidden_services_v2 --exclude-test control.controller.test_hidden_services_conf --exclude-test control.controller.test_with_ephemeral_hidden_services_basic_auth --exclude-test control.controller.test_without_ephemeral_hidden_services --exclude-test control.controller.test_with_ephemeral_hidden_services_basic_auth_no_credentials" if [[ "${TOR_VER_AT_LEAST_044}" = 'yes' ]]; then # XXXX This should probably be part of some test-stem make target. |