Home
last modified time | relevance | path

Searched refs:tests (Results 1 – 25 of 81) sorted by relevance

1234

/mbedtls-development/
A DMakefile9 all: programs tests
20 tests: lib mbedtls_test target
21 $(MAKE) -C tests
30 tests/%:
31 $(MAKE) -C tests $*
125 $(MAKE) -C tests neat
133 check: lib tests
144 tests/compat.sh
145 tests/ssl-opt.sh
172 tests/include/*/*.h tests/include/*/*/*.h \
[all …]
A D.travis.yml24 - tests/scripts/all.sh -k 'check_*'
25 - tests/scripts/all.sh -k test_default_out_of_box
26 - tests/scripts/all.sh -k test_ref_configs
27 - tests/scripts/all.sh -k build_arm_linux_gnueabi_gcc_arm5vte build_arm_none_eabi_gcc_m0plus
31 - tests/scripts/all.sh -k test_full_cmake_gcc_asan
49 - tests/scripts/travis-log-failure.sh
A DCMakeLists.txt62 option(ENABLE_TESTING "Build mbed TLS tests." OFF)
64 option(ENABLE_TESTING "Build mbed TLS tests." ON)
253 # The C files in tests/src directory contain test code shared among test suites
263 # target. This library of objects is used by tests and programs CMake files
267 …(GLOB MBEDTLS_TEST_FILES ${CMAKE_CURRENT_SOURCE_DIR}/tests/src/*.c ${CMAKE_CURRENT_SOURCE_DIR}/tes…
270 PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/tests/include
286 add_subdirectory(tests)
294 COMMAND tests/compat.sh
295 COMMAND tests/ssl-opt.sh
304 COMMAND gendesc tests/Descriptions.txt -o descriptions
[all …]
A DREADME.md50 * Perl to run the tests, and to generate some source files in the development branch.
85 In order to run the tests, enter:
89 The tests need Python to be built and Perl to be run. If you don't have one of them installed, you …
93 You'll still be able to run a much smaller set of tests with:
115 In order to run the tests, enter:
123 …the test suites, but kept the programs enabled, you can still run a much smaller set of tests with:
237 - `tests/ssl-opt.sh` runs integration tests for various TLS options (renegotiation, resumption, e…
238 - `tests/compat.sh` tests interoperability of every ciphersuite with other implementations.
239 - `tests/scripts/test-ref-configs.pl` test builds in various reduced configurations.
240 - `tests/scripts/key-exchanges.pl` test builds in configurations with a single key exchange enabl…
[all …]
A DCONTRIBUTING.md10 …re submission, as mentioned in the [Tests](#tests) and [Continuous Integration](#continuous-integr…
62 As mentioned, tests that show the correctness of the feature or bug fix should be added to the pull…
64 Mbed TLS includes a comprehensive set of test suites in the `tests/` directory that are dynamically…
66 [A Knowledge Base article describing how to add additional tests is available on the Mbed TLS websi…
68 A test script `tests/scripts/basic-build-test.sh` is available to show test coverage of the library…
74 …n made, the Continuous Integration (CI) tests are triggered and run. You should follow the result …
76 …he [githooks scripts](https://github.com/ARMmbed/mbedtls/tree/development/tests/git-scripts) prior…
/mbedtls-development/tests/scripts/
A Dbasic-in-docker.sh31 source tests/scripts/docker_env.sh
33 run_in_docker tests/scripts/all.sh 'check_*'
40 run_in_docker -e OSSL_NO_DTLS=1 tests/compat.sh
41 run_in_docker tests/ssl-opt.sh -e '\(DTLS\|SCSV\).*openssl'
42 run_in_docker tests/scripts/test-ref-configs.pl
43 run_in_docker tests/scripts/curves.pl
44 run_in_docker tests/scripts/key-exchanges.pl
A Dall.sh911 tests/ssl-opt.sh
914 tests/compat.sh
933 tests/ssl-opt.sh
936 tests/compat.sh
1025 tests/ssl-opt.sh
1041 tests/ssl-opt.sh
1544 tests/ssl-opt.sh
1547 tests/compat.sh
2044 tests/compat.sh
2078 tests/compat.sh
[all …]
A Dall-in-docker.sh30 source tests/scripts/docker_env.sh
33 run_in_docker tests/scripts/all.sh \
A Dgenerate-afl-tests.sh41 if [ -d ../library -a -d ../include -a -d ../tests -a $THIS_DIR == "tests" ];
48 DEST_TESTCASE_DIR=$TESTSUITE-afl-tests
A Dcheck-generated-files.sh126 check tests/scripts/generate_psa_tests.py $(tests/scripts/generate_psa_tests.py --list)
A Dbasic-build-test.sh45 if [ -d library -a -d include -a -d tests ]; then :; else
100 cd tests
145 } | tee tests/cov-$TEST_OUTPUT
166 cd tests
A Dtest_psa_constant_names.py178 tests = Tests(options)
179 tests.run_all(inputs)
180 tests.report(sys.stdout)
181 if tests.errors:
A Dcheck-python-files.sh70 $PYTHON -m pylint -j 2 scripts/mbedtls_dev/*.py scripts/*.py tests/scripts/*.py || {
79 $PYTHON -m mypy scripts/*.py tests/scripts/*.py ||
A Drun-test-suites.pl124 my ($passed, $tests, $skipped) = $result =~ /([0-9]*) \/ ([0-9]*) tests.*?([0-9]*) skipped/;
125 $total_tests_run += $tests - $skipped;
/mbedtls-development/tests/
A Dcompat-in-docker.sh35 source tests/scripts/docker_env.sh
62 tests/compat.sh \
A Dssl-opt-in-docker.sh35 source tests/scripts/docker_env.sh
62 tests/ssl-opt.sh \
A DDescriptions.txt2 The various 'test_suite_XXX' programs from the 'tests' directory, executed
13 The 'tests/compat.sh' script checks interoperability with OpenSSL and
20 The 'tests/ssl-opt.sh' script checks various options and/or operations not
A DCMakeLists.txt6 # the tests folder is included directly by a parent project, without including
23 ${CMAKE_CURRENT_SOURCE_DIR}/../tests/scripts/generate_psa_tests.py
45 ${CMAKE_CURRENT_SOURCE_DIR}/../tests/scripts/generate_psa_tests.py
48 ${CMAKE_CURRENT_SOURCE_DIR}/../tests/scripts/generate_psa_tests.py
73 # Get the test names of the tests with generated .data files
124 # files (used by some invasive tests) from ../library. Public header
/mbedtls-development/scripts/
A Dtmp_ignore_makefiles.sh55 git update-index --assume-unchanged Makefile library/Makefile programs/Makefile tests/Makefile
58 git update-index --no-assume-unchanged Makefile library/Makefile programs/Makefile tests/Makefile
/mbedtls-development/docs/architecture/testing/
A Dtest-framework.md7 ## Unit tests
25 `tests/scripts/check_test_cases.py` enforces some rules and warns if some guidelines are violated.
27 ## TLS tests
29 ### SSL extension tests argument
37 ## Running tests
43 Unit tests and `ssl-opt.sh` record the outcome of each test case in a **test outcome file**. This f…
A Dinvasive-testing.md88 * Portability: tests should work on every platform. Skipping tests on certain platforms may hide er…
102 * Files in storage (PSA API only — in the Mbed TLS API, black-box unit tests are sufficient).
151 | Coverage | ~ Many useful tests are not reasonably achievable |
166 | Coverage | ~ Many useful tests are not reasonably achievable |
184 | Coverage | ~ Many useful tests require additional internal interfaces |
186 | | ~ The tests may call internal functions in a way that does not reflect actual usage…
188 | Portability | + Fine as long as we control how the tests are linked |
190 | Maintainability | + Tests interfaces that are documented; dependencies in the tests are easily no…
278 Solution ([debugger](#debugger-based-testing)): implemented in `tests/scripts/test_zeroize.gdb`.
300 Note there must also be tests that call `mbedtls_psa_crypto_free` with keys still open, to verify t…
[all …]
/mbedtls-development/programs/pkey/
A DCMakeLists.txt9 target_include_directories(${exe} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../../tests/include)
36 target_include_directories(${exe} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../../tests/include)
/mbedtls-development/programs/fuzz/
A DMakefile1 MBEDTLS_TEST_PATH:=../../tests/src
4 LOCAL_CFLAGS = -I../../tests/include -I../../include -D_FILE_OFFSET_BITS=64
/mbedtls-development/tests/git-scripts/
A DREADME.md7 The mbed TLS git hooks are located in `<mbed TLS root>/tests/git-scripts` directory, and one must c…
12 `ln -s ../../tests/git-scripts/pre-push.sh pre-push`
/mbedtls-development/programs/ssl/
A DCMakeLists.txt43 target_include_directories(${exe} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../../tests/include)
55 …target_include_directories(ssl_pthread_server PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../../tests/incl…

Completed in 27 milliseconds

1234