summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJan Arve Saether <jan-arve.saether@theqtcompany.com>2015-04-10 11:28:16 +0200
committerJan Arve Sæther <jan-arve.saether@theqtcompany.com>2015-04-15 10:58:39 +0000
commit81cc473cef1bb24a87382b93802cfc6e31eeb3c6 (patch)
tree389be41367292c129b82dd8de9bdcb3db8b1dfde /tests
parent5199cce73762771f593f12abbe326f8086142c0e (diff)
downloadqtxmlpatterns-81cc473cef1bb24a87382b93802cfc6e31eeb3c6.tar.gz
Skip op-numeric-unary-minus-1 testcase because it crashes.
It seems to require a larger refactoring in order to solve this, so we skip this for now in order for us to be able to run the remaining tests in CI. Change-Id: I2ae4860a92cdb7fb88ca89c4dd1f047bacbaaf9e Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/xmlpatternssdk/TestCase.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/xmlpatternssdk/TestCase.cpp b/tests/auto/xmlpatternssdk/TestCase.cpp
index a81cba9..bf8616c 100644
--- a/tests/auto/xmlpatternssdk/TestCase.cpp
+++ b/tests/auto/xmlpatternssdk/TestCase.cpp
@@ -77,6 +77,12 @@ 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("op-numeric-unary-minus-1"))
+ {
+ TestResult::List result;
+ result.append(createTestResult(TestResult::Fail, QLatin1String("Skipped this test, we crash on it.")));
+ return result;
+ }
qDebug() << "Running test case: " << name();