summaryrefslogtreecommitdiffstats
path: root/lib/oeqa/files/test.java
diff options
context:
space:
mode:
authorRichard Leitner <richard.leitner@skidata.com>2018-06-15 12:05:55 +0200
committerRichard Leitner <richard.leitner@skidata.com>2018-06-19 14:14:52 +0200
commitbf6f6c6d9547645e6c1988ebb510f415e7336500 (patch)
tree820042ad856478be39ccaf1eb298cae763f0c04b /lib/oeqa/files/test.java
parent3918402ea146a93747170de3a3fd266ec89e521f (diff)
downloadmeta-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/test.java')
-rw-r--r--lib/oeqa/files/test.java8
1 files changed, 8 insertions, 0 deletions
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 @@
1package test;
2
3public class test {
4 public static void main(String[] args) {
5 System.out.println("the answer is 42");
6 }
7
8}