github.com/dmaizel/tests@v0.0.0-20210728163746-cae6a2d9cee8/integration/cri-o/crio_skip_tests.sh (about)

     1  #!/bin/bash
     2  #
     3  # Copyright (c) 2017-2018 Intel Corporation
     4  #
     5  # SPDX-License-Identifier: Apache-2.0
     6  #
     7  
     8  # Currently these are the CRI-O tests that are not working
     9  
    10  declare -a skipCRIOTests=(
    11  'test "ctr lifecycle"'
    12  'test "ctr logging"'
    13  'test "ctr journald logging"'
    14  'test "ctr log max"'
    15  'test "ctr log max with minimum value"'
    16  'test "ctr partial line logging"'
    17  'test "ctr execsync"'
    18  'test "ctr execsync should not overwrite initial spec args"'
    19  'test "privileged ctr device add"'
    20  'test "ctr execsync std{out,err}"'
    21  'test "ctr oom"'
    22  'test "ctr \/etc\/resolv.conf rw\/ro mode"'
    23  'test "ctr create with non-existent command"'
    24  'test "ctr create with non-existent command \[tty\]"'
    25  'test "ctr update resources"'
    26  'test "ctr resources"'
    27  'test "ctr with non-root user has no effective capabilities"'
    28  'test "ctr with low memory configured should not be created"'
    29  'test "privileged ctr -- check for rw mounts"'
    30  'test "annotations passed through"'
    31  'test "ctr with default_env set in configuration"'
    32  'test "ctr with absent mount that should be rejected"'
    33  );
    34