| Index: tools/testrunner/local/statusfile.py
|
| diff --git a/tools/testrunner/local/statusfile.py b/tools/testrunner/local/statusfile.py
|
| index b9937908d6aa42e4c3dfe2dd35a6ca6caa8a01ab..d63fdbf6e6c2c65302c0cc663486264950c44ac7 100644
|
| --- a/tools/testrunner/local/statusfile.py
|
| +++ b/tools/testrunner/local/statusfile.py
|
| @@ -59,7 +59,11 @@ for var in ["debug", "release", "android_arm", "android_ia32", "arm", "a64",
|
|
|
|
|
| def DoSkip(outcomes):
|
| - return SKIP in outcomes or SLOW in outcomes
|
| + return SKIP in outcomes
|
| +
|
| +
|
| +def IsSlow(outcomes):
|
| + return SLOW in outcomes
|
|
|
|
|
| def OnlyStandardVariant(outcomes):
|
|
|