summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorBogDan Vatra <bogdan@kde.org>2015-01-19 10:56:05 +0200
committerBogDan Vatra <bogdan@kde.org>2015-01-19 15:48:50 +0100
commita15569b269598ef516b5fdb9ce3214f7d46bafb8 (patch)
treec270e9ad69f91eb3de7118ecc7f183a5b5a462c0 /tests/auto
parent1909ab4b8fce0f9528e0ceaec9b0edf534c220de (diff)
Android: don't report xfail
Change-Id: I2998632cffc29161eb26421b07cf51a4138fcad3 Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@theqtcompany.com> Reviewed-by: BogDan Vatra <bogdan@kde.org>
Diffstat (limited to 'tests/auto')
-rwxr-xr-xtests/auto/android/runtests_androiddeployqt.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/android/runtests_androiddeployqt.pl b/tests/auto/android/runtests_androiddeployqt.pl
index 8e9376da35..5ab6a63962 100755
--- a/tests/auto/android/runtests_androiddeployqt.pl
+++ b/tests/auto/android/runtests_androiddeployqt.pl
@@ -334,7 +334,7 @@ sub checkXMLOutput
while (my($test_key, $test_valule) = each (%{$function_valule})) {
next if $test_key ne "Incident";
for my $incident (@{$test_valule}) {
- if ($incident->{type} ne "pass") {
+ if (($incident->{type} ne "pass") && ($incident->{type} ne "xfail")) {
print "test $testName::$function_key failed $incident->{file}:$incident->{line}\n";
$fail = 1;
}