mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-02-25 06:46:58 +00:00
Add command line options to list available components
This commit is contained in:
parent
eb39b9b729
commit
b3241cbea7
|
@ -153,6 +153,8 @@ By default, run all tests. With one or more COMPONENT, run only those.
|
||||||
|
|
||||||
Special options:
|
Special options:
|
||||||
-h|--help Print this help and exit.
|
-h|--help Print this help and exit.
|
||||||
|
--list-all-components List all available test components and exit.
|
||||||
|
--list-components List components supported on this platform and exit.
|
||||||
|
|
||||||
General options:
|
General options:
|
||||||
-f|--force Force the tests to overwrite any modified files.
|
-f|--force Force the tests to overwrite any modified files.
|
||||||
|
@ -284,6 +286,8 @@ pre_parse_command_line () {
|
||||||
--gnutls-serv) shift; GNUTLS_SERV="$1";;
|
--gnutls-serv) shift; GNUTLS_SERV="$1";;
|
||||||
--help|-h) usage; exit;;
|
--help|-h) usage; exit;;
|
||||||
--keep-going|-k) KEEP_GOING=1;;
|
--keep-going|-k) KEEP_GOING=1;;
|
||||||
|
--list-all-components) printf '%s\n' $ALL_COMPONENTS; exit;;
|
||||||
|
--list-components) printf '%s\n' $SUPPORTED_COMPONENTS; exit;;
|
||||||
--memory|-m) MEMORY=1;;
|
--memory|-m) MEMORY=1;;
|
||||||
--no-armcc) RUN_ARMCC=0;;
|
--no-armcc) RUN_ARMCC=0;;
|
||||||
--no-force) FORCE=0;;
|
--no-force) FORCE=0;;
|
||||||
|
|
Loading…
Reference in a new issue