From f2f67e79b10990f00a00a4bf558fcd694a43d825 Mon Sep 17 00:00:00 2001 From: aireilly Date: Thu, 24 Nov 2022 09:59:09 +0000 Subject: [PATCH] BZ#2065695 - missing params --- modules/cnf-measuring-latency.adoc | 2 ++ modules/cnf-performing-end-to-end-tests-running-the-tests.adoc | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/cnf-measuring-latency.adoc b/modules/cnf-measuring-latency.adoc index 250f84fca8..67e08afa1c 100644 --- a/modules/cnf-measuring-latency.adoc +++ b/modules/cnf-measuring-latency.adoc @@ -49,6 +49,8 @@ The tests introduce the following environment variables: |`MAXIMUM_LATENCY` |Unified variable that specifies the maximum acceptable latency in microseconds. Applicable for all available latency tools. +|`LATENCY_TEST_RUN` +|Boolean parameter that indicates whether the tests should run. `LATENCY_TEST_RUN` is set to `false` by default. To run the latency tests, set this value to `true`. |==== [NOTE] diff --git a/modules/cnf-performing-end-to-end-tests-running-the-tests.adoc b/modules/cnf-performing-end-to-end-tests-running-the-tests.adoc index 2055f885ce..1ef4f9ae25 100644 --- a/modules/cnf-performing-end-to-end-tests-running-the-tests.adoc +++ b/modules/cnf-performing-end-to-end-tests-running-the-tests.adoc @@ -29,7 +29,7 @@ You provide the test image with a `kubeconfig` file in current directory and its [source,terminal,subs="attributes+"] ---- $ podman run -v $(pwd)/:/kubeconfig:Z -e KUBECONFIG=/kubeconfig/kubeconfig \ --e DISCOVERY_MODE=true registry.redhat.io/openshift4/cnf-tests-rhel8:v{product-version} \ +-e LATENCY_TEST_RUN=true -e DISCOVERY_MODE=true registry.redhat.io/openshift4/cnf-tests-rhel8:v{product-version} \ /usr/bin/test-run.sh -ginkgo.focus="\[performance\]\ Latency\ Test" ----