From d973f28294d93cf54de9b2b87d4cc8524bb8a28a Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 31 Jan 2018 20:21:01 +0100 Subject: prog: don't serialize default arguments This reduces size of a corpus in half. We store corpus on manager and on hub, so this will reduce their memory consumption. But also makes large programs more readable. --- prog/size_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'prog/size_test.go') diff --git a/prog/size_test.go b/prog/size_test.go index 2ab28b90b..5ea646ca7 100644 --- a/prog/size_test.go +++ b/prog/size_test.go @@ -120,7 +120,7 @@ func TestAssignSize(t *testing.T) { }, { "syz_test$length21(&(0x7f0000000000)=0x0, 0x0)", - "syz_test$length21(&(0x7f0000000000)=0x0, 0x40)", + "syz_test$length21(&(0x7f0000000000), 0x40)", }, { "syz_test$length22(&(0x7f0000000000)='12345', 0x0)", -- cgit mrf-deployment