Skip to content

Commit

Permalink
Added a test for a weird problem I was having on OSX.
Browse files Browse the repository at this point in the history
  • Loading branch information
zik.saleeba committed Mar 1, 2014
1 parent ebedf3e commit 14a1bb3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
11 changes: 11 additions & 0 deletions tests/66_printf_undefined.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#include <stdio.h>

void fred()
{
printf("test\n");
}

void main()
{
fred();
}
1 change: 1 addition & 0 deletions tests/66_printf_undefined.expect
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test
2 changes: 1 addition & 1 deletion tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ TESTS= 00_assignment.test \
62_float.test \
63_typedef.test \
64_double_prefix_op.test \
#65_typeless.test \
66_printf_undefined.test \


include csmith/Makefile
Expand Down

0 comments on commit 14a1bb3

Please sign in to comment.