Home | History | Annotate | Download | only in tests
      1 #include <stdlib.h>
      2 
      3 // This wasn't working at one point, because glibc used a variant of clone()
      4 // to implement system(), which Valgrind didn't accept.
      5 
      6 int main(void)
      7 {
      8    system("../../tests/true");
      9    return 0;
     10 }
     11