Signed-off-by: Daniel Nephin <dnephin@docker.com> Upstream-commit: 4f0d95fa6ee7f865597c03b9e63702cdcb0f7067 Component: engine
10 lines
175 B
Go
10 lines
175 B
Go
package dmesg // import "github.com/docker/docker/pkg/dmesg"
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestDmesg(t *testing.T) {
|
|
t.Logf("dmesg output follows:\n%v", string(Dmesg(512)))
|
|
}
|