Skip to content

Commit

Permalink
Merge pull request #21406 from pravisankar/skip-dns-wildcard-test
Browse files Browse the repository at this point in the history
Disable wildcard dns extended test
  • Loading branch information
openshift-merge-robot authored Nov 8, 2018
2 parents 78eb490 + 86c095d commit 027d88e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/extended/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,13 @@ function os::test::extended::focus () {
if [[ -n "${FOCUS:-}" ]]; then
exitstatus=0

local skip="\[Serial\]"
if [[ -n "${SKIP:-}" ]]; then
skip+="|${SKIP}"
fi
# first run anything that isn't explicitly declared [Serial], and matches the $FOCUS, in a parallel mode.
os::log::info "Running parallel tests N=${PARALLEL_NODES:-<default>} with focus ${FOCUS}"
TEST_REPORT_FILE_NAME=focus_parallel TEST_PARALLEL="${PARALLEL_NODES:-5}" os::test::extended::run -- -ginkgo.skip "\[Serial\]" -test.timeout 6h ${TEST_EXTENDED_ARGS-} || exitstatus=$?
TEST_REPORT_FILE_NAME=focus_parallel TEST_PARALLEL="${PARALLEL_NODES:-5}" os::test::extended::run -- -ginkgo.skip "${skip}" -test.timeout 6h ${TEST_EXTENDED_ARGS-} || exitstatus=$?

# Then run everything that requires serial and matches the $FOCUS, serially.
# there is bit of overlap here because not all serial tests declare [Serial], so they might have run in the
Expand Down
1 change: 1 addition & 0 deletions test/extended/util/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,7 @@ var (
`Services should be able to up and down services`, // we don't have wget installed on nodes
`Network should set TCP CLOSE_WAIT timeout`, // possibly some difference between ubuntu and fedora
`should allow ingress access on one named port`, // broken even with network policy on
`should answer endpoint and wildcard queries for the cluster`, // currently not supported by dns operator https://github.com/openshift/cluster-dns-operator/issues/43

`\[NodeFeature:Sysctls\]`, // needs SCC support

Expand Down

0 comments on commit 027d88e

Please sign in to comment.