From b61326efb1bc66202831f9710716b5171a722039 Mon Sep 17 00:00:00 2001 From: Aníbal Limón Date: Thu, 27 Oct 2016 16:39:47 -0500 Subject: oeqa/runtime: Move to runtime_cases MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The new oeqa core framework will modify the structure of the runtime folder the new runtime folder will have python code inside to support runtime test cases. (From OE-Core rev: 637b712096e9d230e15b1a432a561e4118db34c8) Signed-off-by: Aníbal Limón Signed-off-by: Richard Purdie --- meta/lib/oeqa/runtime/files/hellomod.c | 19 ------------------- meta/lib/oeqa/runtime/files/hellomod_makefile | 8 -------- meta/lib/oeqa/runtime/files/testmakefile | 5 ----- 3 files changed, 32 deletions(-) delete mode 100644 meta/lib/oeqa/runtime/files/hellomod.c delete mode 100644 meta/lib/oeqa/runtime/files/hellomod_makefile delete mode 100644 meta/lib/oeqa/runtime/files/testmakefile (limited to 'meta/lib/oeqa/runtime/files') diff --git a/meta/lib/oeqa/runtime/files/hellomod.c b/meta/lib/oeqa/runtime/files/hellomod.c deleted file mode 100644 index a383397e93..0000000000 --- a/meta/lib/oeqa/runtime/files/hellomod.c +++ /dev/null @@ -1,19 +0,0 @@ -#include -#include -#include - -static int __init hello_init(void) -{ - printk(KERN_INFO "Hello world!\n"); - return 0; -} - -static void __exit hello_cleanup(void) -{ - printk(KERN_INFO "Cleaning up hellomod.\n"); -} - -module_init(hello_init); -module_exit(hello_cleanup); - -MODULE_LICENSE("GPL"); diff --git a/meta/lib/oeqa/runtime/files/hellomod_makefile b/meta/lib/oeqa/runtime/files/hellomod_makefile deleted file mode 100644 index b92d5c8fe0..0000000000 --- a/meta/lib/oeqa/runtime/files/hellomod_makefile +++ /dev/null @@ -1,8 +0,0 @@ -obj-m := hellomod.o -KDIR := /usr/src/kernel - -all: - $(MAKE) -C $(KDIR) M=$(PWD) modules - -clean: - $(MAKE) -C $(KDIR) M=$(PWD) clean diff --git a/meta/lib/oeqa/runtime/files/testmakefile b/meta/lib/oeqa/runtime/files/testmakefile deleted file mode 100644 index ca1844e930..0000000000 --- a/meta/lib/oeqa/runtime/files/testmakefile +++ /dev/null @@ -1,5 +0,0 @@ -test: test.o - gcc -o test test.o -lm -test.o: test.c - gcc -c test.c - -- cgit v1.2.3-54-g00ecf