diff --git a/scripts/test2tasks.pl b/scripts/test2tasks.pl
index 88fa2f46c7abf6f2653898ca337f8d2682080e63..fbfbc1fc76b6b6f50b856027810d2ddb22e6bfb1 100755
--- a/scripts/test2tasks.pl
+++ b/scripts/test2tasks.pl
@@ -110,7 +110,8 @@ while (my $line = <STDIN> ) {
             $fullFileName = $fileHash{$fileName};
             $fullFileName = $fileName unless defined $fullFileName;
         }
-        my $type = index($lastLine, 'FAIL') == 0 ? 'err' : 'unknown';
+        my $type = index($lastLine, 'FAIL') == 0 || index($lastLine, 'XPASS') == 0 ?
+                   'err' : 'unknown';
         print $fullFileName, "\t", $line, "\t", $type, "\t", $lastLine,"\n";
         $failCount++;
     } else {