Add failing test case.
authorDavid Given <dg@cowlark.com>
Thu, 14 Feb 2019 22:19:11 +0000 (23:19 +0100)
committerDavid Given <dg@cowlark.com>
Thu, 14 Feb 2019 22:19:11 +0000 (23:19 +0100)
tests/plat/bugs/bug-164-faddrn_c.c [new file with mode: 0644]

diff --git a/tests/plat/bugs/bug-164-faddrn_c.c b/tests/plat/bugs/bug-164-faddrn_c.c
new file mode 100644 (file)
index 0000000..1187de9
--- /dev/null
@@ -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;
+}