dmesg_linux_test.go 128 B

123456789
  1. package dmesg
  2. import (
  3. "testing"
  4. )
  5. func TestDmesg(t *testing.T) {
  6. t.Logf("dmesg output follows:\n%v", string(Dmesg(512)))
  7. }