summaryrefslogtreecommitdiffstats
path: root/cds-regression-test/test/bootstrap.sh
diff options
context:
space:
mode:
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