8000 tests/net: skip TestNetCustomBridge on semaphore by lucab · Pull Request #3740 · rkt/rkt · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Feb 24, 2020. It is now read-only.

tests/net: skip TestNetCustomBridge on semaphore #3740

Merged
merged 2 commits into from
Jul 17, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion tests/rkt_net_nspawn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@

package main

import "testing"
import (
"os"
"testing"
)

func TestNetHost(t *testing.T) {
NewNetHostTest().Execute(t)
Expand Down Expand Up @@ -50,6 +53,10 @@ func TestNetCustomMacvlan(t *testing.T) {
}

func TestNetCustomBridge(t *testing.T) {
// Flaking test: https://github.com/rkt/rkt/issues/3739
if os.Getenv("SEMAPHORE") == "true" {
t.Skip("skipped on semaphore")
}
NewNetCustomBridgeTest().Execute(t)
}

Expand All @@ -66,6 +73,10 @@ func TestNetIPConflict(t *testing.T) {
}

func TestNetCustomPtp(t *testing.T) {
// Flaking test: https://github.com/rkt/rkt/issues/3739
if os.Getenv("SEMAPHORE") == "true" {
t.Skip("skipped on semaphore")
}
// PTP means connection Point-To-Point. That is, connections to other pods/containers should be forbidden
NewNetCustomPtpTest(true).Execute(t)
}
Expand Down
0