Skip to content

Commit 027d88e

Browse files
Merge pull request #21406 from pravisankar/skip-dns-wildcard-test
Disable wildcard dns extended test
2 parents 78eb490 + 86c095d commit 027d88e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

test/extended/setup.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,13 @@ function os::test::extended::focus () {
1515
if [[ -n "${FOCUS:-}" ]]; then
1616
exitstatus=0
1717

18+
local skip="\[Serial\]"
19+
if [[ -n "${SKIP:-}" ]]; then
20+
skip+="|${SKIP}"
21+
fi
1822
# first run anything that isn't explicitly declared [Serial], and matches the $FOCUS, in a parallel mode.
1923
os::log::info "Running parallel tests N=${PARALLEL_NODES:-<default>} with focus ${FOCUS}"
20-
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=$?
24+
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=$?
2125

2226
# Then run everything that requires serial and matches the $FOCUS, serially.
2327
# there is bit of overlap here because not all serial tests declare [Serial], so they might have run in the

test/extended/util/test.go

+1
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,7 @@ var (
321321
`Services should be able to up and down services`, // we don't have wget installed on nodes
322322
`Network should set TCP CLOSE_WAIT timeout`, // possibly some difference between ubuntu and fedora
323323
`should allow ingress access on one named port`, // broken even with network policy on
324+
`should answer endpoint and wildcard queries for the cluster`, // currently not supported by dns operator https://github.com/openshift/cluster-dns-operator/issues/43
324325

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

0 commit comments

Comments
 (0)