You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -482,7 +482,8 @@ The arguments to `test` are:
482
482
*`--run` to only run the tests. For example, `$ mbed test -m K64F -t GCC_ARM --run`.
483
483
*`-n <TESTS_BY_NAME>` to limit the tests built or run to those listed (by name) in a comma separated list. For example, `$ mbed test -m K64F -t GCC_ARM -n TESTS-functional-test1,TESTS-functional-test2`.
484
484
*`--source <SOURCE>` to select the source directory. The default is `.` (the current directory). You can specify multiple source locations, even outside the program tree.
485
-
*`--build <BUILD>` to select the build directory. Default: `.build/ inside your program.
485
+
*`--build <BUILD>` to select the build directory. Default: `.build/` inside your program.
486
+
*`--options <OPTIONS>` to select compile options. Examples: "debug-info": will generate debugging information; "small-build" will use microlib/nanolib, but limit RTOS to single thread; "save-asm": will save the asm generated by the compiler
486
487
*`-c or --clean` to clean the build directory before compiling,
487
488
*`--test-spec <TEST_SPEC>` to set the path for the test spec file used when building and running tests (the default path is the build directory).
488
489
*`-v` or `--verbose` for verbose diagnostic output.
dict(name=['-o', '--options'], action='append', help='Compile options. Examples: "debug-info": generate debugging information; "small-build" to use microlib/nanolib, but limit RTOS to single thread; "save-asm": save the asm generated by the compiler'),
2021
2022
dict(name=['-c', '--clean'], action='store_true', help='Clean the build directory before compiling'),
2022
2023
dict(name='--test-spec', dest="test_spec", help="Path used for the test spec file used when building and running tests (the default path is the build directory)"),
2023
2024
help='Find, build and run tests',
2024
2025
description=("Find, build, and run tests in a program and libraries"))
0 commit comments