Skip to content

Commit

Permalink
tests: Skip shimv2 tests on SLES
Browse files Browse the repository at this point in the history
shim2 tests are not working on SLES kata-containers#1251.

Fixes kata-containers#1391

Signed-off-by: Gabriela Cervantes <[email protected]>
  • Loading branch information
GabyCT committed Apr 11, 2019
1 parent 3cee799 commit 46ef346
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion integration/containerd/shimv2/shimv2-factory-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ source "${SCRIPT_PATH}/../../../metrics/lib/common.bash"
source /etc/os-release || source /usr/lib/os-release
extract_kata_env

if [[ "$ID" =~ ^opensuse.*$ ]]; then
if [[ "$ID" =~ ^opensuse.*$ ]] || [ "$ID" == sles ]; then
issue="https://github.com/kata-containers/tests/issues/1251"
echo "Skip shimv2 on $ID, see: $issue"
exit
Expand Down
2 changes: 1 addition & 1 deletion integration/containerd/shimv2/shimv2-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ echo "========================================"
echo " start shimv2 testing"
echo "========================================"

if [[ "$ID" =~ ^opensuse.*$ ]]; then
if [[ "$ID" =~ ^opensuse.*$ ]] || [ "$ID" == sles ]; then
issue="https://github.com/kata-containers/tests/issues/1251"
echo "Skip shimv2 on $ID, see: $issue"
exit
Expand Down

0 comments on commit 46ef346

Please sign in to comment.