From 16bba80855af956ad2f7d7b36dfb503a4b8ad074 Mon Sep 17 00:00:00 2001 From: Justin Smith Date: Thu, 13 Apr 2023 11:23:48 -0400 Subject: [PATCH] Skip test agent-restrict --- tests/ci/run_openssh_integration.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/ci/run_openssh_integration.sh b/tests/ci/run_openssh_integration.sh index e3d0850499e..a7c15614c59 100755 --- a/tests/ci/run_openssh_integration.sh +++ b/tests/ci/run_openssh_integration.sh @@ -97,14 +97,17 @@ ls aws_lc_build -DBUILD_SHARED_LIBS=1 install_aws_lc +CODEBUILD_SKIPPED_TESTS="agent-subprocess forwarding multiplex forward-control agent-restrict" + # Using default branch. Build openssh and run tests. openssh_build -openssh_run_tests "agent-subprocess forwarding multiplex forward-control" +openssh_run_tests "${CODEBUILD_SKIPPED_TESTS}" # Using branch V_8_9 checkout_openssh_branch V_8_9 openssh_build # In v8.9, the "percent" test requires the 'openssl' cli command -openssh_run_tests "percent agent-subprocess forwarding multiplex forward-control" +openssh_run_tests "percent ${CODEBUILD_SKIPPED_TESTS}" popd +