summaryrefslogtreecommitdiffstats
path: root/cds-regression-test/test/bootstrap.sh
diff options
context:
space:
mode:
authorJozsef Csongvai <jozsef.csongvai@bell.ca>2021-01-19 12:32:04 -0500
committerJozsef Csongvai <jozsef.csongvai@bell.ca>2021-01-20 10:02:39 -0500
commite92fce768cb792f11920f45fdbb38b3af69e212f (patch)
tree650d0bd49b1c98b49535d3f8aa9f98bb97255532 /cds-regression-test/test/bootstrap.sh
parentbfffa2d982cc506979aaa0b96b6bb352c8dda9a7 (diff)
Update to latest version
Issue-ID: TEST-295 Signed-off-by: Jozsef Csongvai <jozsef.csongvai@bell.ca> Change-Id: Ie14e2061c1e0931bf3d555e54c79bb736d140d5c
Diffstat (limited to 'cds-regression-test/test/bootstrap.sh')
-rwxr-xr-xcds-regression-test/test/bootstrap.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/cds-regression-test/test/bootstrap.sh b/cds-regression-test/test/bootstrap.sh
deleted file mode 100755
index 36641ed..0000000
--- a/cds-regression-test/test/bootstrap.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-# Starting from Frankfurt CDS release, we need to bootstrap on the first execution.
-
-# bootstrap files output filenames
-RESPONSE_HEADERS_FILE="$RESPONSES_DIRECTORY/bootstrap-response-headers"
-RESPONSE_PAYLOAD_FILE="$RESPONSES_DIRECTORY/bootstrap-response-payload"
-
-if [ ${CDS_VERSION} == "elalto" ]; then
- echo "Skipping bootstrap for elalto release"
-else
- echo "Bootstrapping CDS"
- . ./$TEST_DIRECTORY/utils.sh
- bootstrap_cds ${RESPONSE_PAYLOAD_FILE} ${RESPONSE_HEADERS_FILE}
- echo "DEBUG::: RESPONSE_HEADERS_FILE: ${RESPONSE_HEADERS_FILE}"
- cat ${RESPONSE_HEADERS_FILE}
- echo "DEBUG::: RESPONSE_PAYLOAD_FILE: ${RESPONSE_PAYLOAD_FILE}"
- cat ${RESPONSE_PAYLOAD_FILE}
- assert_status_code 200 ${RESPONSE_HEADERS_FILE}
-fi