[T106][ZXW-22]7520V3SCV2.01.01.02P42U09_VEC_V0.8_AP_VEC origin source commit
Change-Id: Ic6e05d89ecd62fc34f82b23dcf306c93764aec4b
diff --git a/ap/build/uClibc/test/silly/Makefile b/ap/build/uClibc/test/silly/Makefile
new file mode 100644
index 0000000..4db1850
--- /dev/null
+++ b/ap/build/uClibc/test/silly/Makefile
@@ -0,0 +1,7 @@
+# uClibc silly tests
+# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+
+top_builddir=../../
+include ../Rules.mak
+-include Makefile.in
+include ../Test.mak
diff --git a/ap/build/uClibc/test/silly/Makefile.in b/ap/build/uClibc/test/silly/Makefile.in
new file mode 100644
index 0000000..bb08e0d
--- /dev/null
+++ b/ap/build/uClibc/test/silly/Makefile.in
@@ -0,0 +1,5 @@
+# uClibc silly tests
+# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+
+RET_hello := 42
+RET_tiny := 42
diff --git a/ap/build/uClibc/test/silly/hello.c b/ap/build/uClibc/test/silly/hello.c
new file mode 100644
index 0000000..4aba926
--- /dev/null
+++ b/ap/build/uClibc/test/silly/hello.c
@@ -0,0 +1,8 @@
+#include<stdio.h>
+#include <stdlib.h>
+
+int main(void)
+{
+ printf("hello world\n");
+ exit(42);
+}
diff --git a/ap/build/uClibc/test/silly/tiny.c b/ap/build/uClibc/test/silly/tiny.c
new file mode 100644
index 0000000..e54c0ff
--- /dev/null
+++ b/ap/build/uClibc/test/silly/tiny.c
@@ -0,0 +1,6 @@
+#include <unistd.h>
+
+int main(void)
+{
+ _exit(42);
+}