• Home
  • Raw
  • Download

Lines Matching full:bash

66 | bash build_hitls.sh                 | Compiles all source codes.                                 …
67 | bash build_sdv.sh | Compiles all test codes. |
68 | bash execute_sdv.sh | Executes test cases.|
74 | gcov | bash build_hitls.sh gcov |Enables the capability of obtaining the coverage rate. …
75 | debug | bash build_hitls.sh debug |Enables the debug capability. |
76 | asan | bash build_hitls.sh asan |Enables the memory monitoring capability. |
82 | --help or -h | bash build_sdv.sh --help |Obtains help information. |
83 | no-crypto | bash build_sdv.sh no-crypto |Deletes the test cases of the crypto module. …
84 | no-bsl | bash build_sdv.sh no-bsl | Deletes the test cases of the bsl module. |
85 | no-tls | bash build_sdv.sh no-tls | Deletes the test cases of the tls module. |
86 | no-pki | bash build_sdv.sh no-pki | Deletes the test cases of the pki module. |
87 | no-auth | bash build_sdv.sh no-auth | Deletes the test cases of the auth module. …
88 | verbose |bash build_sdv.sh verbose |Displays the detailed information about the build…
89 | gcov | bash build_sdv.sh gcov | Enables the capability of obtaining the coverage rate. …
90 | asan | bash build_sdv.sh asan | Enables the memory monitoring capability. |
91 | big-endian |bash build_sdv.sh big-endian | Implements compilation in the big-endian e…
92 | run-tests | bash build_sdv.sh run-tests=xxx1xxx2xxx3 | Compiles a specified test suite. …
98 | \<file name\> | bash execute_sdv.sh test_suites_xxx ... | Executes all test cases in a speci…
99 | \<test name\> | bash execute_sdv.sh UT_CRYPTO_xxx SDV_CRYPTO_xxx ... |Executes a test case w…
103 - Build the source code in default mode: bash build_hitls.sh
104 - Enable ASan, debug, and coverage during source code build: bash build_hitls.sh asan gcov debug
105 - Enable ASan and coverage during test code build, and display build details: bash build_sdv.sh asa…
106 - Build the source code in default mode: bash build_hitls.sh
107 - Execute all test cases in default mode: bash execute_sdv.sh
108 - Execute a specified test set: bash execute_sdv.sh test_suites_xxx1 test_suites_xxx2