Confirmed users
1,759
edits
Line 52: | Line 52: | ||
skip-if = os == "android" || os == "linux" # skip on Android and skip on Linux | skip-if = os == "android" || os == "linux" # skip on Android and skip on Linux | ||
skip-if = os == "android" && debug # skip on Android/Debug only (continues to run on Android/Opt) | skip-if = os == "android" && debug # skip on Android/Debug only (continues to run on Android/Opt) | ||
* For any test, there can only be one "skip-if" line. Often it is necessary to use || to expand the scope of a skip-if. For example, if a manifest already has: | |||
[some_test.html] | |||
skip-if = os == "android" || debug | |||
but some_test.html is still failing on Windows/opt, it can be changed to: | |||
[some_test.html] | |||
skip-if = os == "android" || debug || os == "win" | |||
* other keywords: '''os_version, bits, e10s, stylo, webrender, asan''' | * other keywords: '''os_version, bits, e10s, stylo, webrender, asan''' |