gitlab #367
Change-Id: I55408e6b8b539bb3775e7ff5afc7f32323e32eb2
String testName = resolveTestName();
TestRunnable runnable = testRunnables.get(testName);
- long start = System.nanoTime();
+ if (runnable == null) {
+ LOGGER.error("SCL Test Suite file (.sts) for test {} cannot be found from test repository.", testName);
+ return;
+ }
+ long start = System.nanoTime();
if (timeout > -1) {
LOGGER.info("Running test {} with a timeout of {} seconds", testName, timeout); //$NON-NLS-1$
Timer timer = new Timer();