Add failing test case.
This commit is contained in:
parent
44c8b53a2d
commit
cf6041c57f
16
tests/plat/bugs/bug-164-faddrn_c.c
Normal file
16
tests/plat/bugs/bug-164-faddrn_c.c
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
#include "test.h"
|
||||||
|
|
||||||
|
int doit(void)
|
||||||
|
{
|
||||||
|
char buf[128];
|
||||||
|
int i;
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
doit();
|
||||||
|
finished();
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in a new issue