Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
cfd8173f
Commit
cfd8173f
authored
Jun 10, 2016
by
Wojciech Tyczynski
Committed by
GitHub
Jun 10, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Add a custom main instead of the standard test main, to reduce stack …"
parent
38a1fb2b
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
113 deletions
+1
-113
test-integration.sh
hack/test-integration.sh
+1
-1
known-flags.txt
hack/verify-flags/known-flags.txt
+0
-2
main_test.go
test/integration/main_test.go
+0
-110
No files found.
hack/test-integration.sh
View file @
cfd8173f
...
@@ -52,7 +52,7 @@ runTests() {
...
@@ -52,7 +52,7 @@ runTests() {
# KUBE_RACE="-race"
# KUBE_RACE="-race"
KUBE_GOFLAGS
=
"-tags 'integration no-docker' "
\
KUBE_GOFLAGS
=
"-tags 'integration no-docker' "
\
KUBE_RACE
=
""
\
KUBE_RACE
=
""
\
KUBE_T
EST_ARGS
=
"--integration-timeout=
${
KUBE_TIMEOUT
}
"
KUBE_T
IMEOUT
=
"
${
KUBE_TIMEOUT
}
"
\
KUBE_TEST_API_VERSIONS
=
"
$1
"
\
KUBE_TEST_API_VERSIONS
=
"
$1
"
\
"
${
KUBE_ROOT
}
/hack/test-go.sh"
test
/integration
"
${
KUBE_ROOT
}
/hack/test-go.sh"
test
/integration
...
...
hack/verify-flags/known-flags.txt
View file @
cfd8173f
...
@@ -206,7 +206,6 @@ insecure-bind-address
...
@@ -206,7 +206,6 @@ insecure-bind-address
insecure-port
insecure-port
insecure-skip-tls-verify
insecure-skip-tls-verify
instance-name-prefix
instance-name-prefix
integration-timeout
iptables-masquerade-bit
iptables-masquerade-bit
iptables-sync-period
iptables-sync-period
ir-data-source
ir-data-source
...
@@ -449,7 +448,6 @@ target-port
...
@@ -449,7 +448,6 @@ target-port
tcp-services
tcp-services
terminated-pod-gc-threshold
terminated-pod-gc-threshold
test-timeout
test-timeout
timeout-full-stack
tls-cert-file
tls-cert-file
tls-private-key-file
tls-private-key-file
to-version
to-version
...
...
test/integration/main_test.go
deleted
100644 → 0
View file @
38a1fb2b
/*
Copyright 2016 The Kubernetes Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package
integration
import
(
"flag"
"fmt"
"os"
"runtime"
"strings"
"testing"
"time"
)
var
integrationTimeout
=
flag
.
Duration
(
"integration-timeout"
,
10
*
time
.
Minute
,
"If non-zero timeout all tests after this amount of time."
)
var
fullStack
=
flag
.
Bool
(
"timeout-full-stack"
,
false
,
"If true, don't filter stacks on timeout"
)
var
timer
*
time
.
Timer
func
printInterestingStacks
()
{
buf
:=
make
([]
byte
,
2
<<
20
)
buf
=
buf
[
:
runtime
.
Stack
(
buf
,
true
)]
stacks
:=
[][]
string
{}
for
_
,
stack
:=
range
strings
.
Split
(
string
(
buf
),
"
\n\n
"
)
{
lines
:=
strings
.
Split
(
stack
,
"
\n
"
)
for
_
,
line
:=
range
lines
{
if
strings
.
Contains
(
line
,
"src/k8s.io"
)
||
*
fullStack
{
stacks
=
append
(
stacks
,
lines
)
break
}
}
}
for
_
,
stack
:=
range
stacks
{
for
_
,
line
:=
range
stack
{
fmt
.
Printf
(
"%s
\n
"
,
line
)
}
fmt
.
Printf
(
"
\n
"
)
}
return
}
func
startAlarm
()
{
if
*
integrationTimeout
>
0
{
timer
=
time
.
AfterFunc
(
*
integrationTimeout
,
func
()
{
printInterestingStacks
()
fmt
.
Printf
(
"Integration tests timed out after %v
\n
"
,
integrationTimeout
.
String
())
os
.
Exit
(
1
)
})
}
}
func
stopAlarm
()
{
if
timer
!=
nil
{
timer
.
Stop
()
}
}
/**
* Adds a custom test main handler (see: TestMain in https://golang.org/pkg/testing/ for details)
* This custom does the standard timeout, but strips non-kubernetes stacks out of the stack trace.
* It filters things like:
goroutine 466 [IO wait, 7 minutes]:
net.runtime_pollWait(0x7fd74c4672c0, 0x72, 0xc821614000)
/usr/local/go/src/runtime/netpoll.go:160 +0x60
net.(*pollDesc).Wait(0xc8215c21b0, 0x72, 0x0, 0x0)
/usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
net.(*pollDesc).WaitRead(0xc8215c21b0, 0x0, 0x0)
/usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
net.(*netFD).Read(0xc8215c2150, 0xc821614000, 0x1000, 0x1000, 0x0, 0x7fd74c491050, 0xc820014058)
/usr/local/go/src/net/fd_unix.go:250 +0x23a
net.(*conn).Read(0xc820a5a090, 0xc821614000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
/usr/local/go/src/net/net.go:172 +0xe4
net/http.noteEOFReader.Read(0x7fd74c465258, 0xc820a5a090, 0xc8215f0068, 0xc821614000, 0x1000, 0x1000, 0x405773, 0x0, 0x0)
/usr/local/go/src/net/http/transport.go:1687 +0x67
net/http.(*noteEOFReader).Read(0xc8215ae1a0, 0xc821614000, 0x1000, 0x1000, 0xc82159ad1d, 0x0, 0x0)
<autogenerated>:284 +0xd0
bufio.(*Reader).fill(0xc8202a2b40)
/usr/local/go/src/bufio/bufio.go:97 +0x1e9
bufio.(*Reader).Peek(0xc8202a2b40, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0)
/usr/local/go/src/bufio/bufio.go:132 +0xcc
net/http.(*persistConn).readLoop(0xc8215f0000)
/usr/local/go/src/net/http/transport.go:1073 +0x177
created by net/http.(*Transport).dialConn
/usr/local/go/src/net/http/transport.go:857 +0x10a6
* See printInterestingStacks above for details.
* We may want to get even more aggressive in the future.
*/
// TestMain replaces the built-in golang Main for running tests. See https://golang.org/pkg/testing/
func
TestMain
(
m
*
testing
.
M
)
{
flag
.
Parse
()
startAlarm
()
v
:=
m
.
Run
()
stopAlarm
()
os
.
Exit
(
v
)
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment