summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/files/hello.c
diff options
context:
space:
mode:
authorTim Orling <timothy.t.orling@linux.intel.com>2019-06-07 16:35:13 -0700
committerTim Orling <timothy.t.orling@linux.intel.com>2019-06-07 16:38:37 -0700
commitcee0ae0a34fcbf378e08f3af2e0b033e17137ca1 (patch)
tree08f282209636bb082183e4d7b4b9f39066d7dab6 /meta/lib/oeqa/runtime/files/hello.c
parent7c1f46d8510f95fe7a35127196bd496935efe384 (diff)
downloadopenembedded-core-contrib-timo/python3-scons.tar.gz
oeqa/runtime: add simple test for sconstimo/python3-scons
This test simply compiles a hello world program using scons. Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Diffstat (limited to 'meta/lib/oeqa/runtime/files/hello.c')
-rw-r--r--meta/lib/oeqa/runtime/files/hello.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/files/hello.c b/meta/lib/oeqa/runtime/files/hello.c
new file mode 100644
index 0000000000..b0697a3304
--- /dev/null
+++ b/meta/lib/oeqa/runtime/files/hello.c
@@ -0,0 +1,5 @@
+int
+ main()
+ {
+ printf("Hello, world!\n");
+ }