nethercote | f6a1d50 | 2004-08-09 12:21:57 +0000 | [diff] [blame] | 1 | #include <assert.h> |
2 | #include <unistd.h> | ||||
3 | |||||
sewardj | 45f4e7c | 2005-09-27 19:20:21 +0000 | [diff] [blame] | 4 | int main ( int argc, char** argv, char** envp ) |
nethercote | f6a1d50 | 2004-08-09 12:21:57 +0000 | [diff] [blame] | 5 | { |
6 | execve(NULL, NULL, NULL); | ||||
sewardj | 45f4e7c | 2005-09-27 19:20:21 +0000 | [diff] [blame] | 7 | execve("../../tests/true", NULL, envp); |
nethercote | f6a1d50 | 2004-08-09 12:21:57 +0000 | [diff] [blame] | 8 | assert(0); // shouldn't get here |
9 | } |