about summary refs log tree commit diff
path: root/test/test-multiple-mutators.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test-multiple-mutators.c')
-rw-r--r--test/test-multiple-mutators.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/test-multiple-mutators.c b/test/test-multiple-mutators.c
index 0f6f5c64..dafc817c 100644
--- a/test/test-multiple-mutators.c
+++ b/test/test-multiple-mutators.c
@@ -12,11 +12,10 @@
 int main(int argc, char **argv) {
 
   int  a = 0;
-  char s[16];
-  memset(s, 0, 16);
-  read(0, s, 0xa0);
+  char s[100];
+  read(0, s, 100);
 
-  if (s[17] != '\x00') { abort(); }
+  if (s[7] == 'B') { abort(); }
 
   return 0;