Rev 3674 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3674 | Rev 4691 | ||
|---|---|---|---|
| Line 28... | Line 28... | ||
| 28 | 28 | ||
| 29 | #include <stdio.h> |
29 | #include <stdio.h> |
| 30 | #include <stdlib.h> |
30 | #include <stdlib.h> |
| 31 | #include "../tester.h" |
31 | #include "../tester.h" |
| 32 | 32 | ||
| 33 | char *test_loop1(bool quiet) |
33 | char *test_loop1(void) |
| 34 | { |
34 | { |
| 35 | printf("Looping...\n"); |
35 | TPRINTF("Looping..."); |
| 36 | while (1); |
36 | while (true); |
| 37 | printf("Survived endless loop?!!\n"); |
37 | TPRINTF("\n"); |
| 38 | 38 | ||
| 39 | return NULL; |
39 | return "Survived endless loop"; |
| 40 | } |
40 | } |
| 41 | - | ||