From 58509c75a2a2d472855da0683c36d7ef2f1a6c97 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 23 Dec 2015 19:58:15 +0100 Subject: prog: remove padding checking So far it has found only false positives. Let's leave this to KMSAN. --- ipc/ipc_test.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ipc') diff --git a/ipc/ipc_test.go b/ipc/ipc_test.go index 1d85c4a8b..fb453b505 100644 --- a/ipc/ipc_test.go +++ b/ipc/ipc_test.go @@ -79,6 +79,8 @@ func TestEmptyProg(t *testing.T) { } func TestStrace(t *testing.T) { + t.Skip("strace is broken") + bin := buildExecutor(t) defer os.Remove(bin) @@ -118,6 +120,7 @@ func TestExecute(t *testing.T) { p := prog.Generate(rs, 10, nil) _, _, _, _, _, _, err := env.Exec(p) if err != nil { + t.Logf("program:\n%s\n", p.Serialize()) t.Fatalf("failed to run executor: %v", err) } } -- cgit mrf-deployment