From cee0ae0a34fcbf378e08f3af2e0b033e17137ca1 Mon Sep 17 00:00:00 2001 From: Tim Orling Date: Fri, 7 Jun 2019 16:35:13 -0700 Subject: oeqa/runtime: add simple test for scons This test simply compiles a hello world program using scons. Signed-off-by: Tim Orling --- meta/lib/oeqa/runtime/files/hello.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 meta/lib/oeqa/runtime/files/hello.c (limited to 'meta/lib/oeqa/runtime/files/hello.c') 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"); + } -- cgit 1.2.3-korg