Commit 8d5f3bd7 authored by Jan Arve Saether's avatar Jan Arve Saether Committed by Jan Arve Sæther
Browse files

Skipped some tests that crashed


These tests crashed, and thus prevented us from getting the results from
the ~19000 other test cases.

Change-Id: I8fd2abcc68b545177f4baa912e9e0d5dbe931201
Reviewed-by: default avatarSimon Hausmann <simon.hausmann@theqtcompany.com>
Showing with 12 additions and 0 deletions
......@@ -83,6 +83,18 @@ TestResult::List TestCase::execute(const ExecutionStage stage,
result.append(createTestResult(TestResult::Fail, QLatin1String("Skipped this test, we crash on it.")));
return result;
}
else if (name() == QLatin1String("emptyorderdecl-13"))
{
TestResult::List result;
result.append(createTestResult(TestResult::Fail, QLatin1String("Skipped this test, we crash on it.")));
return result;
}
else if (name() == QLatin1String("emptyorderdecl-21"))
{
TestResult::List result;
result.append(createTestResult(TestResult::Fail, QLatin1String("Skipped this test, we crash on it.")));
return result;
}
qDebug() << "Running test case: " << name();
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment