Added a test for a weird problem I was having on OSX.
git-svn-id: http://picoc.googlecode.com/svn/trunk@604 21eae674-98b7-11dd-bd71-f92a316d2d60
This commit is contained in:
parent
1493fa103d
commit
caae9e2693
11
tests/66_printf_undefined.c
Normal file
11
tests/66_printf_undefined.c
Normal file
|
@ -0,0 +1,11 @@
|
|||
#include <stdio.h>
|
||||
|
||||
void fred()
|
||||
{
|
||||
printf("test\n");
|
||||
}
|
||||
|
||||
void main()
|
||||
{
|
||||
fred();
|
||||
}
|
1
tests/66_printf_undefined.expect
Normal file
1
tests/66_printf_undefined.expect
Normal file
|
@ -0,0 +1 @@
|
|||
test
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue