lava-submit.py: use OE tests for OpenEmbedded
diff --git a/lava-submit.py b/lava-submit.py
index aa5fd30..6a0d45d 100755
--- a/lava-submit.py
+++ b/lava-submit.py
@@ -183,8 +183,12 @@
     if len(tests) > 0:
         test_list = []
         for test in tests:
-            test_list.append({"git-repo": git_repo,
-                              "testdef": 'ubuntu/{0}.yaml'.format(test)})
+            if distribution == 'openembedded':
+                test_list.append({"git-repo": git_repo,
+                                "testdef": 'oe/{0}.yaml'.format(test)})
+            else:
+                test_list.append({"git-repo": git_repo,
+                                "testdef": 'ubuntu/{0}.yaml'.format(test)})
         actions.append({
             "command": "lava_test_shell",
             "parameters": {