summaryrefslogtreecommitdiffhomepage
path: root/runsc/test/image
diff options
context:
space:
mode:
authorFabricio Voznika <fvoznika@google.com>2018-09-05 18:31:37 -0700
committerShentubot <shentubot@google.com>2018-09-05 18:32:50 -0700
commit5f0002fc83a77a39d9a2ef1443bc6c18e22ea779 (patch)
tree136393f0552951b5da1399c8bb4161eea0e3b156 /runsc/test/image
parent41b56696c4923276c6269812bb3dfa7643dab65d (diff)
Use container's capabilities in exec
When no capabilities are specified in exec, use the container's capabilities to match runc's behavior. PiperOrigin-RevId: 211735186 Change-Id: Icd372ed64410c81144eae94f432dffc9fe3a86ce
Diffstat (limited to 'runsc/test/image')
-rw-r--r--runsc/test/image/image_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/runsc/test/image/image_test.go b/runsc/test/image/image_test.go
index b1e5e726a..13fd8f1ee 100644
--- a/runsc/test/image/image_test.go
+++ b/runsc/test/image/image_test.go
@@ -44,7 +44,7 @@ func TestHelloWorld(t *testing.T) {
}
defer d.CleanUp()
- if err := d.WaitForOutput("Hello from Docker!", 5*time.Second); err != nil {
+ if _, err := d.WaitForOutput("Hello from Docker!", 5*time.Second); err != nil {
t.Fatalf("docker didn't say hello: %v", err)
}
}
@@ -160,7 +160,7 @@ func TestMysql(t *testing.T) {
defer d.CleanUp()
// Wait until it's up and running.
- if err := d.WaitForOutput("port: 3306 MySQL Community Server", 3*time.Minute); err != nil {
+ if _, err := d.WaitForOutput("port: 3306 MySQL Community Server", 3*time.Minute); err != nil {
t.Fatalf("docker.WaitForOutput() timeout: %v", err)
}
@@ -184,10 +184,10 @@ func TestMysql(t *testing.T) {
defer client.CleanUp()
// Ensure file executed to the end and shutdown mysql.
- if err := client.WaitForOutput("--------------\nshutdown\n--------------", 15*time.Second); err != nil {
+ if _, err := client.WaitForOutput("--------------\nshutdown\n--------------", 15*time.Second); err != nil {
t.Fatalf("docker.WaitForOutput() timeout: %v", err)
}
- if err := d.WaitForOutput("mysqld: Shutdown complete", 30*time.Second); err != nil {
+ if _, err := d.WaitForOutput("mysqld: Shutdown complete", 30*time.Second); err != nil {
t.Fatalf("docker.WaitForOutput() timeout: %v", err)
}
}