mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 20:08:54 +00:00
Add basic a few tests to be run by travis. Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
16 lines
255 B
Bash
Executable File
16 lines
255 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
|
|
set -e
|
|
|
|
export GOPATH="${GOPATH:-/tmp/go}"
|
|
|
|
script_dir="$(dirname $(readlink -f $0))"
|
|
|
|
sudo -E PATH="$PATH" bats "${script_dir}/../tests/image_creation.bats"
|