1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-02 01:19:52 +00:00

oeqa/runtime: add simple test for scons

This test simply compiles a hello world program using scons.

(From OE-Core rev: bf6e3f0f3a7a134e8e3cb16366ef01b8c956e4c8)

Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Tim Orling
2019-06-07 16:47:54 -07:00
committed by Richard Purdie
parent 2209af86ed
commit 716dff0b2f
3 changed files with 43 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
Program('hello.c')
+5
View File
@@ -0,0 +1,5 @@
int
main()
{
printf("Hello, world!\n");
}