From 50435740937ef768fc07cd6de63396e39142875c Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Thu, 15 Oct 2015 20:42:10 +0000 Subject: [PATCH 1/2] Integration tests: SimpleHTTP on port 5002. Should be pulled by @jsha in lockstep with https://github.com/letsencrypt/boulder/commit/6b8f1c27003bb43f33ffcfa9a5f63eb4154c6df9. --- tests/integration/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/_common.sh b/tests/integration/_common.sh index fd60b9258..ab645f6d6 100755 --- a/tests/integration/_common.sh +++ b/tests/integration/_common.sh @@ -16,7 +16,7 @@ letsencrypt_test () { --server "${SERVER:-http://localhost:4000/directory}" \ --no-verify-ssl \ --dvsni-port 5001 \ - --simple-http-port 5001 \ + --simple-http-port 5002 \ --manual-test-mode \ $store_flags \ --text \ From d1b7b0553fbccfb8579615b8c38517b8596e789f Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Thu, 15 Oct 2015 20:53:47 +0000 Subject: [PATCH 2/2] Back to 5001, but with env var --- tests/integration/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/_common.sh b/tests/integration/_common.sh index ab645f6d6..418856def 100755 --- a/tests/integration/_common.sh +++ b/tests/integration/_common.sh @@ -16,7 +16,7 @@ letsencrypt_test () { --server "${SERVER:-http://localhost:4000/directory}" \ --no-verify-ssl \ --dvsni-port 5001 \ - --simple-http-port 5002 \ + --simple-http-port ${SIMPLE_HTTP_PORT:-5001} \ --manual-test-mode \ $store_flags \ --text \