Home | History | Annotate | Download | only in test
      1 // Simple test for a fuzzer. The fuzzer must find a particular string.
      2 #include <cstring>
      3 #include <cstdint>
      4 #include <cstdio>
      5 #include <cstdlib>
      6 
      7 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
      8   // TODO: check other sizes.
      9   if (Size >= 8 && memcmp(Data, "01234567", 8) == 0) {
     10     if (Size >= 12 && memcmp(Data + 8, "ABCD", 4) == 0) {
     11       if (Size >= 14 && memcmp(Data + 12, "XY", 2) == 0) {
     12         if (Size >= 16 && memcmp(Data + 14, "KLM", 3) == 0) {
     13           fprintf(stderr, "BINGO\n");
     14           exit(1);
     15         }
     16       }
     17     }
     18   }
     19   return 0;
     20 }
     21