From f7cbe214c02b6ef3d5ecdd8d39ac5201e010ea9f Mon Sep 17 00:00:00 2001 From: Tim Trippel Date: Mon, 14 Oct 2024 17:04:55 -0700 Subject: [PATCH] [tests] run reference CP flow in CI This adds the reference CP flow to the integration test script to ensure it is run in CI. Signed-off-by: Tim Trippel --- run_integration_tests.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/run_integration_tests.sh b/run_integration_tests.sh index d650fa5..18f03ff 100755 --- a/run_integration_tests.sh +++ b/run_integration_tests.sh @@ -45,3 +45,13 @@ for sku in "${SKUS[@]}"; do --parallel_clients=10 \ --total_calls_per_client=10 done + +# Run the reference CP flow. +CP_SKUS=("sival") +for sku in "${CP_SKUS[@]}"; do + echo "Running reference CP flow with sku: ${sku} ..." + bazelisk run //src/ate/test_programs:cp -- \ + --pa_socket="localhost:5001" \ + --sku="${sku}" \ + --sku_auth_pw="test_password" +done