Bug 926821 - Fix build documentation & comments about quoting of manifest property values; rs=build DONTBUILD

--HG--
extra : rebase_source : f91229f8bae49200b47d29ef5cfb0517b83057bc
This commit is contained in:
Ed Morley 2013-10-28 15:03:56 +00:00
parent 673fd74516
commit 2a3d94e413
2 changed files with 7 additions and 3 deletions

View File

@ -53,7 +53,11 @@ In summary, manifests are ini files with section names describing test files::
Keys under sections can hold metadata about each test::
[test_foo.js]
skip-if = os == win
skip-if = os == "win"
[test_foo.js]
skip-if = os == "linux" && debug
[test_baz.js]
fail-if = os == "mac" || os == "android"
There is a special **DEFAULT** section whose keys/metadata apply to all
sections/tests::

View File

@ -676,8 +676,8 @@ class TestManifest(ManifestParser):
def filter(self, values, tests):
"""
filter on a specific list tag, e.g.:
run-if = os == win linux
skip-if = os == mac
run-if = os == "win"
skip-if = os == "mac"
"""
# tags: