diff options
author | Richard Leitner <richard.leitner@skidata.com> | 2018-06-15 12:05:55 +0200 |
---|---|---|
committer | Richard Leitner <richard.leitner@skidata.com> | 2018-06-19 14:14:52 +0200 |
commit | bf6f6c6d9547645e6c1988ebb510f415e7336500 (patch) | |
tree | 820042ad856478be39ccaf1eb298cae763f0c04b /lib/oeqa/files | |
parent | 3918402ea146a93747170de3a3fd266ec89e521f (diff) | |
download | meta-java-bf6f6c6d9547645e6c1988ebb510f415e7336500.tar.gz |
oeqa: runtime: add java & javac testcases
These testcases verify that java and javac are working. They will be
used as "quality-gate" test for accepting patches in the future.
Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
Diffstat (limited to 'lib/oeqa/files')
-rw-r--r-- | lib/oeqa/files/test.jar | bin | 0 -> 8164 bytes | |||
-rw-r--r-- | lib/oeqa/files/test.java | 8 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lib/oeqa/files/test.jar b/lib/oeqa/files/test.jar new file mode 100644 index 0000000..a539b22 --- /dev/null +++ b/lib/oeqa/files/test.jar | |||
Binary files differ | |||
diff --git a/lib/oeqa/files/test.java b/lib/oeqa/files/test.java new file mode 100644 index 0000000..a661972 --- /dev/null +++ b/lib/oeqa/files/test.java | |||
@@ -0,0 +1,8 @@ | |||
1 | package test; | ||
2 | |||
3 | public class test { | ||
4 | public static void main(String[] args) { | ||
5 | System.out.println("the answer is 42"); | ||
6 | } | ||
7 | |||
8 | } | ||