doc: scripts: sanitycheck: s/ini/yaml/
AFAIK an ini file system was ported to a yaml file system. But some ini file references still remain. This patch changes all ini file mentions into yaml. Signed-off-by: Sebastian Bøe <sebastian.boe@nordicsemi.no>
This commit is contained in:
parent
bf8e504588
commit
d3409c5e67
2 changed files with 10 additions and 10 deletions
|
@ -49,7 +49,7 @@ The sanitycheck script accepts the following optional arguments:
|
|||
Controls what platforms are tested if --platform or
|
||||
--all are not used. For each architecture specified by
|
||||
--arch (defaults to all of them), choose the first N
|
||||
platforms to test in the arch-specific .ini file
|
||||
platforms to test in the arch-specific .yaml file
|
||||
'platforms' list. Defaults to 1.
|
||||
-a ARCH, --arch ARCH Arch filter for testing. Takes precedence over
|
||||
--platform. If unspecified, test all arches. Multiple
|
||||
|
@ -74,7 +74,7 @@ The sanitycheck script accepts the following optional arguments:
|
|||
match.
|
||||
-s TEST, --test TEST Run only the specified test cases. These are named by
|
||||
<path to test project relative to --testcase-
|
||||
root>/<testcase.ini section name>
|
||||
root>/<testcase.yaml section name>
|
||||
-l, --all Build/test on all platforms. Any --platform arguments
|
||||
ignored.
|
||||
-o TESTCASE_REPORT, --testcase-report TESTCASE_REPORT
|
||||
|
@ -127,17 +127,17 @@ The sanitycheck script accepts the following optional arguments:
|
|||
in faster compilation since builds will be incremental
|
||||
-T TESTCASE_ROOT, --testcase-root TESTCASE_ROOT
|
||||
Base directory to recursively search for test cases.
|
||||
All testcase.ini files under here will be processed.
|
||||
All testcase.yaml files under here will be processed.
|
||||
May be called multiple times. Defaults to the
|
||||
'samples' and 'tests' directories in the Zephyr tree.
|
||||
-A ARCH_ROOT, --arch-root ARCH_ROOT
|
||||
Directory to search for arch configuration files. All
|
||||
.ini files in the directory will be processed.
|
||||
.yaml files in the directory will be processed.
|
||||
-z SIZE, --size SIZE Don't run sanity checks. Instead, produce a report to
|
||||
stdout detailing RAM/ROM sizes on the specified
|
||||
filenames. All other command line arguments ignored.
|
||||
-S, --enable-slow Execute time-consuming test cases that have been
|
||||
marked as 'slow' in testcase.ini. Normally these are
|
||||
marked as 'slow' in testcase.yaml. Normally these are
|
||||
only built.
|
||||
-R, --enable-asserts Build all test cases with assertions enabled.
|
||||
-Q, --error-on-deprecations
|
||||
|
|
|
@ -1735,7 +1735,7 @@ def parse_arguments():
|
|||
help="Controls what platforms are tested if --platform or "
|
||||
"--all are not used. For each architecture specified by "
|
||||
"--arch (defaults to all of them), choose the first "
|
||||
"N platforms to test in the arch-specific .ini file "
|
||||
"N platforms to test in the arch-specific .yaml file "
|
||||
"'platforms' list. Defaults to 1.")
|
||||
parser.add_argument("-a", "--arch", action="append",
|
||||
help="Arch filter for testing. Takes precedence over --platform. "
|
||||
|
@ -1762,7 +1762,7 @@ def parse_arguments():
|
|||
parser.add_argument("-s", "--test", action="append",
|
||||
help="Run only the specified test cases. These are named by "
|
||||
"<path to test project relative to "
|
||||
"--testcase-root>/<testcase.ini section name>")
|
||||
"--testcase-root>/<testcase.yaml section name>")
|
||||
parser.add_argument("-l", "--all", action="store_true",
|
||||
help="Build/test on all platforms. Any --platform arguments "
|
||||
"ignored.")
|
||||
|
@ -1831,12 +1831,12 @@ def parse_arguments():
|
|||
"faster compilation since builds will be incremental")
|
||||
parser.add_argument("-T", "--testcase-root", action="append", default=[],
|
||||
help="Base directory to recursively search for test cases. All "
|
||||
"testcase.ini files under here will be processed. May be "
|
||||
"testcase.yaml files under here will be processed. May be "
|
||||
"called multiple times. Defaults to the 'samples' and "
|
||||
"'tests' directories in the Zephyr tree.")
|
||||
parser.add_argument("-A", "--arch-root",
|
||||
default="%s/boards" % ZEPHYR_BASE,
|
||||
help="Directory to search for arch configuration files. All .ini "
|
||||
help="Directory to search for arch configuration files. All .yaml "
|
||||
"files in the directory will be processed.")
|
||||
parser.add_argument("-z", "--size", action="append",
|
||||
help="Don't run sanity checks. Instead, produce a report to "
|
||||
|
@ -1844,7 +1844,7 @@ def parse_arguments():
|
|||
"All other command line arguments ignored.")
|
||||
parser.add_argument("-S", "--enable-slow", action="store_true",
|
||||
help="Execute time-consuming test cases that have been marked "
|
||||
"as 'slow' in testcase.ini. Normally these are only built.")
|
||||
"as 'slow' in testcase.yaml. Normally these are only built.")
|
||||
parser.add_argument("-R", "--enable-asserts", action="store_true",
|
||||
help="Build all test cases with assertions enabled.")
|
||||
parser.add_argument("-Q", "--error-on-deprecations", action="store_false",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue