Searched refs:tests (Results 1 – 25 of 36) sorted by relevance
12
/net-tools-3.4.0/mbedtls-2.4.0/ |
D | Makefile | 7 .PHONY: all no_test programs lib tests install uninstall clean test check covtest lcov apidoc apido… 9 all: programs tests 20 tests: lib target 21 $(MAKE) -C tests 75 $(MAKE) -C tests clean 80 check: lib tests 81 $(MAKE) -C tests check 91 tests/compat.sh 92 tests/ssl-opt.sh 97 lcov --capture --directory library -o tests.info [all …]
|
D | CMakeLists.txt | 13 option(ENABLE_TESTING "Build mbed TLS tests." OFF) 15 option(ENABLE_TESTING "Build mbed TLS tests." ON) 133 add_subdirectory(tests) 141 COMMAND tests/compat.sh 142 COMMAND tests/ssl-opt.sh 148 COMMAND lcov --capture --directory library/CMakeFiles/mbedtls.dir -o tests.info 149 COMMAND lcov --add-tracefile files.info --add-tracefile tests.info -o all.info 151 COMMAND gendesc tests/Descriptions.txt -o descriptions 153 COMMAND rm -f files.info tests.info all.info final.info descriptions
|
D | README.md | 26 - depending on the yotta target, features of mbed OS may be used in examples and tests 63 In order to run the tests, enter: 67 The tests need Perl to be built and run. If you don't have Perl installed, you can skip building th… 71 You'll still be able to run a much smaller set of tests with: 79 …o some issues. Please check the Makefiles in `library/`, `programs/` and `tests/` for options to m… 90 In order to run the tests, enter: 98 …the test suites, but kept the programs enabled, you can still run a much smaller set of tests with: 134 …c projects needed to build the library and all the programs. The files in tests are not generated … 144 mbed TLS includes an elaborate test suite in `tests/` that initially requires Perl to generate the … 148 - `tests/ssl-opt.sh` runs integration tests for various TLS options (renegotiation, resumption, e… [all …]
|
/net-tools-3.4.0/mbedtls-2.4.0/tests/scripts/ |
D | all.sh | 25 if [ -d library -a -d include -a -d tests ]; then :; else 70 git update-index --no-skip-worktree Makefile library/Makefile programs/Makefile tests/Makefile 71 git checkout -- Makefile library/Makefile programs/Makefile tests/Makefile 231 tests/scripts/recursion.pl library/*.c 234 tests/scripts/check-generated-files.sh 237 tests/scripts/check-doxy-blocks.pl 241 tests/scripts/check-names.sh 245 tests/scripts/doxygen.sh 249 tests/scripts/yotta-build.sh 260 tests/ssl-opt.sh [all …]
|
D | check-names.sh | 21 tests/scripts/list-macros.sh 22 tests/scripts/list-enum-consts.pl 23 tests/scripts/list-identifiers.sh 24 tests/scripts/list-symbols.sh
|
D | generate-afl-tests.sh | 26 if [ -d ../library -a -d ../include -a -d ../tests -a $THIS_DIR == "tests" ]; 33 DEST_TESTCASE_DIR=$TESTSUITE-afl-tests
|
D | basic-build-test.sh | 34 if [ -d library -a -d include -a -d tests ]; then :; else 76 cd tests 100 make lcov |tee tests/cov-$TEST_OUTPUT 109 cd tests
|
D | run-test-suites.pl | 64 my ($passed, $tests, $skipped) = $result =~ /([0-9]*) \/ ([0-9]*) tests.*?([0-9]*) skipped/; 65 $total_tests_run += $tests - $skipped;
|
D | travis-log-failure.sh | 27 for LOG in $( ls tests/$PATTERN 2>/dev/null ); do
|
D | check-generated-files.sh | 7 if [ -d library -a -d include -a -d tests ]; then :; else
|
D | doxygen.sh | 8 if [ -d library -a -d include -a -d tests ]; then :; else
|
/net-tools-3.4.0/ |
D | .gitignore | 73 # the tests/ folder 74 libcoap/tests/.deps 75 libcoap/tests/testdriver 76 libcoap/tests/*.o 96 tinydtls-0.8.2/tests/Makefile 98 tinydtls-0.8.2/tests/ccm-test 99 tinydtls-0.8.2/tests/dtls-client 101 tinydtls-0.8.2/tests/dtls-server 102 tinydtls-0.8.2/tests/prf-test
|
D | README.docker | 26 exit with Ctrl-p ctrl-q to execute tests from the command line 45 * Execute tests like echo-client
|
/net-tools-3.4.0/libcoap/ |
D | Makefile.am | 23 tests/test_options.h \ 24 tests/test_pdu.h \ 25 tests/test_error_response.h \ 26 tests/test_sendqueue.h \ 27 tests/test_uri.h \ 28 tests/test_wellknown.h 32 SUBDIRS = . $(DOC_DIR) tests examples subdir
|
D | .gitignore | 59 # the tests/ folder 60 tests/.deps 61 tests/testdriver 62 tests/*.o
|
D | ChangeLog | 101 * tests/test_error_response.c (t_init_error_response_tests): new 102 tests for error response generation 104 * tests/test_pdu.c (t_encode_pdu5): fixed number for option Accept 129 * configure.in: new option --with-tests to enable unit tests 131 * tests/testdriver.c: unit tests for parser functions
|
D | configure.ac | 32 # tests needs the static library 184 # exporting the tests to doc/Doxygen(.in) 199 AC_ARG_ENABLE([tests], optenable 200 [AC_HELP_STRING([--enable-tests], 201 [Enable building the tests (default=no)])], 211 …nstall the package that contains the headers or disable the testing binary using --disable-tests.]) 224 …nstall the package that contains the library or disable the testing binary using --disable-tests.]) 236 [Enable building the tests (default=yes)])], 351 tests/Makefile
|
/net-tools-3.4.0/tinydtls-0.8.2/ |
D | Makefile.in | 56 SUBDIRS:=tests doc platform-specific sha2 aes ecc 77 $(MAKE) -C tests check 133 doc/Doxyfile doc/doxygen.out doc/html/ $(LIB) tests/ccm-test \ 134 tests/dtls-client tests/dtls-server tests/prf-test $(package) \
|
/net-tools-3.4.0/tinydtls-0.8.2/tests/ |
D | Makefile.in | 76 test -d $(DISTDIR)/tests || mkdir $(DISTDIR)/tests 77 cp $(FILES) $(DISTDIR)/tests
|
/net-tools-3.4.0/libcoap/scripts/ |
D | build.sh | 4 WITH_TESTS=--enable-tests 26 tests/testdriver
|
/net-tools-3.4.0/mbedtls-2.4.0/scripts/ |
D | tmp_ignore_makefiles.sh | 40 git update-index --assume-unchanged Makefile library/Makefile programs/Makefile tests/Makefile 43 git update-index --no-assume-unchanged Makefile library/Makefile programs/Makefile tests/Makefile
|
D | bump_version.sh | 122 sed -e "s/version:\".\{1,\}/version:\"$VERSION\"/g" < tests/suites/test_suite_version.data > tmp 123 mv tmp tests/suites/test_suite_version.data
|
/net-tools-3.4.0/mbedtls-2.4.0/tests/ |
D | Descriptions.txt | 2 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
|
/net-tools-3.4.0/tinydtls-0.8.2/sha2/ |
D | sha2test.pl | 257 $num = $errors = $error256 = $error384 = $error512 = $tests = $test256 = $test384 = $test512 = 0; 338 $tests = $test256 + $test384 + $test512; 355 $pass = $tests - $errors; 356 print "TOTAL: ".substr(" $tests", -12)."\t".substr(" $pass", -6)."\t".substr…
|
/net-tools-3.4.0/mbedtls-2.4.0/tests/data_files/dir4/ |
D | Readme | 1 This directory contains the certificates for the tests targeting the enforcement of the policy indi…
|
12