aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test cases/common/105 generatorcustom/gen.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/test cases/common/105 generatorcustom/gen.c b/test cases/common/105 generatorcustom/gen.c
index 59518c0..5b49e94 100644
--- a/test cases/common/105 generatorcustom/gen.c
+++ b/test cases/common/105 generatorcustom/gen.c
@@ -22,9 +22,14 @@ int main(int argc, const char ** argv) {
fprintf(output, "#pragma once\n");
fprintf(output, "#define ");
- char c;
+ int bytes_copied = 0;
+ int c;
while((c = fgetc(input)) != EOF) {
fputc(c, output);
+ if(++bytes_copied > 10000) {
+ fprintf(stderr, "File copy stuck in an eternal loop!\n");
+ return 1;
+ }
}
fputc('\n', output);