aboutsummaryrefslogtreecommitdiff
path: root/tests (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add ChangeLog entry for loongarch64 + a review nitTheo Buehler2025-04-121-2/+2
|
* Basic loongarch64 supportIvan A. Melnikov2025-04-102-0/+6
| | | | | | | | | | | Just wire things up to make the project buildable on LoongArch64. opensslconf.h is taken form riscv64 folder as is, and is the same as on some other 64 bit architectures. Refs: https://github.com/libressl/portable/issues/1123 Signed-off-by: Ivan A. Melnikov <iv@altlinux.org>
* hook x509_name_test to buildTheo Buehler2025-03-152-0/+10
|
* Fix -I lines for ec_asn1_testTheo Buehler2025-03-092-0/+2
|
* Fixes testsYang Kun2025-03-041-10/+10
|
* Link renegotiation test to buildTheo Buehler2025-02-034-0/+47
|
* link rsa_method_test to buildTheo Buehler2025-01-042-0/+10
|
* try to appease emscriptenTheo Buehler2024-12-261-0/+2
|
* Adjust the ML-KEM tests to recent reorganizationTheo Buehler2024-12-2613-264/+52
|
* Remove mlkem and bytestring from public visibility for nowTheo Buehler2024-12-192-0/+2
|
* Some fixes for ML-KEM testsTheo Buehler2024-12-173-12/+22
| | | | | | | - Run the 1024 iteration test as well as unit tests. - Remove unused test script with unexpected contents. Follow-on to #1127
* Hook ML-KEM related testsKenjiro Nakayama2024-12-1713-0/+279
| | | | This patch adds ML-KEM related tests.
* Try to fix Emscripten ASAN OOM for ec_asn1_testTheo Buehler2024-11-021-0/+1
|
* Link err_test to buildTheo Buehler2024-10-082-0/+10
|
* fix syslog_r and pipe2 detectionTheo Buehler2024-10-021-2/+2
|
* Adjust for whirlpool removalTheo Buehler2024-08-312-10/+0
|
* Remove evp_pkey_checkTheo Buehler2024-08-292-10/+0
|
* ... and testsTheo Buehler2024-08-112-0/+63
|
* Use check_symbol_exists() rather than check_function_exists()Theo Buehler2024-08-021-2/+2
|
* reenable clienttestTheo Buehler2024-07-202-6/+6
|
* grammar tweakTheo Buehler2024-06-191-2/+2
|
* call prepare_emscripten_test_target for x509_asn1 to fix an OOM errorMoustaphaSaad2024-06-191-0/+1
| | | | when built in asan mode, x509_asn1 fails with an Out Of Memory error because of higher memory usage of address sanitizer. This commit sets `-sALLOW_MEMORY_GROWTH` for that target by calling prepare_emscripten_test_target
* group testdsa, testenc, and testrsa under a single if(NOT EMSCRIPTEN)MoustaphaSaad2024-06-191-13/+5
|
* replace if(EMSCRIPTEN) with prepare_emscripten_test_target functionMoustaphaSaad2024-06-191-36/+31
| | | | introduce prepare_emscripten_test_target function to setup `--preload-file` and `-sALLOW_MEMORY_GROWTH` linker flags for test targets
* simplify explicit_bzero commentMoustaphaSaad2024-06-191-2/+1
|
* wrap bn_unit ALLOW_MEMORY_GROWTH in if(EMSCRIPTEN)MoustaphaSaad2024-06-191-1/+3
|
* disable tlstestMoustaphaSaad2024-06-191-1/+2
| | | | tlstest uses socketpair syscall which is not supported by Emscripten
* disable testrsaMoustaphaSaad2024-06-191-5/+9
| | | | testrsa doesn't have an executable instead it uses openssl executable which access various files for IO. adding such files to --preload-file is infeasible.
* disable testencMoustaphaSaad2024-06-191-5/+9
| | | | testenc doesn't have an executable instead it uses openssl executable which access various files for IO. adding such files to --preload-file is infeasible.
* disable testdsaMoustaphaSaad2024-06-191-5/+9
| | | | testdsa doesn't have an executable instead it uses openssl executable which access various files for IO. adding such files to --preload-file is infeasible.
* fix ssltestMoustaphaSaad2024-06-192-1/+10
| | | | | changed the ssltest.sh to search to .js file as well. added preload-file link flag to enable access to TEST_SOURCE_DIR
* fix ssl_get_shared_ciphersMoustaphaSaad2024-06-191-1/+5
| | | | added preload-file link flag to enable access to TEST_SOURCE_DIR
* fix shutdowntestMoustaphaSaad2024-06-192-0/+5
| | | | | changed the shutdowntest.sh to search to .js file as well. added preload-file link flag to enable access to TEST_SOURCE_DIR
* fix servertestMoustaphaSaad2024-06-192-0/+5
| | | | | changed the servertest.sh to search to .js file as well. added preload-file link flag to enable access to TEST_SOURCE_DIR
* fix quictestMoustaphaSaad2024-06-192-0/+5
| | | | | changed the quictest.sh to search to .js file as well. added preload-file link flag to enable access to TEST_SOURCE_DIR
* fix pq_testMoustaphaSaad2024-06-191-0/+2
| | | | changed the pq_test.sh to search to .js file as well
* fix policyMoustaphaSaad2024-06-191-0/+3
| | | | added preload-file link flag to enable access to TEST_SOURCE_DIR
* fix keypairtestMoustaphaSaad2024-06-191-0/+3
| | | | added preload-file link flag to enable access to TEST_SOURCE_DIR
* fix evptestMoustaphaSaad2024-06-191-0/+3
| | | | added preload-file link flag to enable access to TEST_SOURCE_DIR
* fix cttestMoustaphaSaad2024-06-191-0/+3
| | | | added preload-file link flag to enable access to TEST_SOURCE_DIR
* fix bn_unitMoustaphaSaad2024-06-191-0/+1
| | | | | bn_unit uses more memory than Emscripten default initial heap size. ALLOW_MEMORY_GROWTH linker option is passed to fix the OOM error
* fix apitestMoustaphaSaad2024-06-191-0/+3
| | | | added preload-file link flag to enable access to TEST_SOURCE_DIR
* disable arc4randomforktest because Emscripten lacks fork supportMoustaphaSaad2024-06-191-1/+2
|
* fix aeadtestMoustaphaSaad2024-06-192-0/+5
| | | | | changed the aeadtest.sh to search to .js file as well. added preload-file link flag to enable access to TEST_SOURCE_DIR
* replace add_test with add_platform_testMoustaphaSaad2024-06-191-122/+130
| | | | In WebAssembly, you need to pass the generated a.out.js to node to run it, as it's not an executable by itself.
* disable explicit_bzero because of lack of sigsuspend support on EmscriptenMoustaphaSaad2024-06-191-1/+2
|
* Link x509_extensions_test to buildTheo Buehler2024-05-282-0/+10
|
* Make RFC 5280 test xfail on 32-bit time_t systemsTheo Buehler2024-05-263-0/+19
|
* Clean up the time_t test messTheo Buehler2024-05-254-21/+22
| | | | | | | The RFC 5280 test now passes also with small time_t. The ASN.1 time test now has a test case that makes it fail for small time t. In that case use a wrapper script that prins why the test is expected to fail and makes the test suite fail if it passes.
* Link lhash_test to buildTheo Buehler2024-05-062-0/+10
|