mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-06 07:54:22 +01:00
Run the agent shutdown test as part of CI testing code in this repo. Fixes: #1808. Depends-on:github.com/kata-containers/tests#3495 Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
18 lines
236 B
Bash
Executable File
18 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2019 Ant Financial
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
set -e
|
|
cidir=$(dirname "$0")
|
|
source "${cidir}/lib.sh"
|
|
|
|
clone_tests_repo
|
|
|
|
pushd ${tests_repo_dir}
|
|
.ci/run.sh
|
|
tracing/test-agent-shutdown.sh
|
|
popd
|