aboutsummaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2015-12-23 19:58:15 +0100
committerDmitry Vyukov <dvyukov@google.com>2015-12-23 19:58:15 +0100
commit58509c75a2a2d472855da0683c36d7ef2f1a6c97 (patch)
tree01a5a400dc703bac7b8003aa2344ba36b24beb96 /ipc
parent078517990325cd52828f3ba2d74ced12fc412db8 (diff)
prog: remove padding checking
So far it has found only false positives. Let's leave this to KMSAN.
Diffstat (limited to 'ipc')
-rw-r--r--ipc/ipc_test.go3
1 files changed, 3 insertions, 0 deletions
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)
}
}