summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2006-09-17 19:35:18 +0000
committerHolger Freyther <zecke@selfish.org>2006-09-17 19:35:18 +0000
commit777d2da978682d5391fe35f48755b80340e0600e (patch)
tree20490de2abb48d40f2520a735ee35be79121b277
parent71f49d707bdbf9c4a1cedbea0e849271b5c7c214 (diff)
parent41755fb3756a95642b14f560b889a0add9ddd7a2 (diff)
merge of '04cd7b14ad574131ab6b03984f2d0bd53c6f19fc'
and '6388d23a0add65b7d813d1ac18c8befec1913226'
-rw-r--r--classes/test.bbclass14
-rw-r--r--packages/quilt/quilt-native.inc5
2 files changed, 19 insertions, 0 deletions
diff --git a/classes/test.bbclass b/classes/test.bbclass
new file mode 100644
index 0000000000..71afe88404
--- /dev/null
+++ b/classes/test.bbclass
@@ -0,0 +1,14 @@
+#
+# Tasks specific to QA testing of packages
+#
+# For native and cross packages we want to test
+# immediately for other packages we want to package
+# the tests including a test
+#
+
+
+addtask test after do_compile
+test_do_test () {
+ :
+}
+
diff --git a/packages/quilt/quilt-native.inc b/packages/quilt/quilt-native.inc
index c8bbdc8e07..b7ddd8bce8 100644
--- a/packages/quilt/quilt-native.inc
+++ b/packages/quilt/quilt-native.inc
@@ -14,3 +14,8 @@ EXTRA_OECONF = "--disable-nls"
do_configure () {
oe_runconf
}
+
+do_test() {
+ oe_runmake check
+}
+