summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/base/java_complex.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/base/java_complex.java')
-rw-r--r--qadevOOo/runner/base/java_complex.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/qadevOOo/runner/base/java_complex.java b/qadevOOo/runner/base/java_complex.java
index 7e639021f52d..212c9337778f 100644
--- a/qadevOOo/runner/base/java_complex.java
+++ b/qadevOOo/runner/base/java_complex.java
@@ -44,15 +44,20 @@ public class java_complex implements TestBase
*/
public boolean executeTest(TestParameters param)
{
-
// get the test job
String testJob = ((String) param.get("TestJob"));
DescGetter descGetter = new ComplexDescGetter();
// get the test jobs
DescEntry[] entries = descGetter.getDescriptionFor(testJob, null, true);
- return executeTest(param, entries);
+ if (entries == null) {
+ System.out.println("Couldn't get Description for Job: " + testJob);
+
+ return false;
+ }
+
+ return executeTest(param, entries);
}
/**