Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-12-13 | If the list of templates 'o' passed to fuse_opt_parse(3) is NULL then | helg | |
the processing function should be called in the same way as if no match was found. ok mpi@ | |||
2017-12-11 | sscanf(3) is now used to parse templates that contain format specifiers | helg | |
(e.g. %u, %o) other than %s. This aligns libfuse with the Linux reference implementation. ok mpi@ | |||
2017-12-11 | The fuse_opt_match(3) library function does not match options correctly. | helg | |
libfuse supports option templates of the following form that can be used to automatically parse arguments supplied on the command line. "-p " argument that takes an option e.g -p 22 or -p22 "-p %x" argument that takes an option parsed like sscanf(3) "cache=yes" matches -ocache=yes or -o cache=yes "cache=%s" matches -ocache=<string> or -o cache=<string> "cache=" matches same as above but value is passed to option proc "noatime" matches -onoatime or -o atime For example, it does not match options of the form "-p 22" or "cache=yes" to the corresponding templates "-p " and "cache=yes". This patch fixes that and updates the regression tests accordingly. ok mpi@ | |||
2017-12-09 | Add a regress test for tls_config_parse_protocols(). | Joel Sing | |
2017-12-09 | Use a test value that fits into a long on both 32-bit and 64-bit | Joel Sing | |
architectures, so that the regress passes on both. | |||
2017-11-28 | Add regress coverage for ASN1_TYPE_{get,set}_int_octetstring() | Joel Sing | |
2017-11-28 | Add regress test coverage for building clienthello and serverhello | Joel Sing | |
extensions, both with extensions being present and not present. The not present case currently fails. | |||
2017-11-28 | Add regress for CBB_discard_child(). | Joel Sing | |
Converted from BoringSSL. | |||
2017-11-16 | Add regress tests for fuse_opt_parse() and fuse_parse_cmdline() | helg | |
ok mpi@ | |||
2017-11-16 | Disable the pthread_once subtest until the problem with samba port | Alexander Bluhm | |
is resolved and libpthread can be fixed. discussed with guenther@ | |||
2017-11-03 | Tests of libexpat 2.2.5 also need source file structdata.c. | Alexander Bluhm | |
2017-10-16 | Add regress test for cancellation of pthread_once()'s init_routine | Philip Guenther | |
From Scott Cheloha (scottcheloha (at) gmail.com) | |||
2017-10-15 | Add a regression test for ldexp(3). | Visa Hankala | |
2017-10-11 | Update regress now that ssl_cipher_list_to_bytes() takes a CBB. | Joel Sing | |
Based on a diff from doug@ | |||
2017-10-10 | Revise regress now that ssl_bytes_to_cipher_list() takes a CBS. | Joel Sing | |
2017-09-07 | Try both libpthread and RTLD_DEFAULT when looking up functions | Philip Guenther | |
so the test can find everything after the libpthread->libc move | |||
2017-08-29 | When parsing extensions by calling the parse functions directly, ensure | Joel Sing | |
that we have consumed all of the extension data. This catches the ALPN extension handling issue that was just fixed. | |||
2017-08-28 | Some style(9). | Joel Sing | |
2017-08-28 | Remove chacha20-poly1305-old regress and test vectors. | Joel Sing | |
2017-08-28 | Use current chacha20-poly1305 cipher suite values. | Joel Sing | |
2017-08-28 | Update due to removal of original chacha20-poly1305 cipher suites. | Joel Sing | |
2017-08-27 | Rewrite SRTP extension using CBB/CBS and the new extension framework. | Doug Hogan | |
input + ok beck@, jsing@ | |||
2017-08-27 | check return value from CBB_init | Bob Beck | |
2017-08-26 | Rewrite ALPN extension using CBB/CBS and the new extension framework. | Doug Hogan | |
ok bcook@ beck@ input + ok jsing@ | |||
2017-08-16 | test locale priorities and overrides | Ingo Schwarze | |
2017-08-16 | test isalpha_l(3), tolower_l(3), wctype_l(3), iswctype_l(3), | Ingo Schwarze | |
wctrans_l(3), towctrans_l(3), wcscasecmp_l(3), wcsncasecmp_l(3), and strerror_l(3) | |||
2017-08-16 | test nl_langinfo_l(3), iswalpha_l(3), towupper_l(3) | Ingo Schwarze | |
2017-08-15 | refactor in preparation for testing more functions; no functional change | Ingo Schwarze | |
2017-08-12 | Rewrite the TLS status request extension to use the new TLS extension framework. | Bob Beck | |
ok jsing@ | |||
2017-08-12 | Add regress coverage for the TLS signature algorithms extension. | Joel Sing | |
2017-08-12 | Rewrite session ticket TLS extension handling using CBB/CBS and the new | Doug Hogan | |
extension framework. ok jsing@ beck@ | |||
2017-08-12 | Remove NPN test coverage. | Joel Sing | |
2017-08-12 | errant whitespace | Bob Beck | |
2017-08-12 | fix resource leaks, ok @guenther | Brent Cook | |
2017-08-12 | Update the TLSv1.2 Client Hello messages, due to the removal of DSA | Joel Sing | |
sigalgs. | |||
2017-08-11 | Be consistent with goto labels, failure flag and use of FAIL macro. | Joel Sing | |
2017-08-11 | doug@ added code in here as well. | Joel Sing | |
2017-08-11 | Sort by extension/function name. | Joel Sing | |
2017-08-11 | Rewrite EllipticCurves TLS extension handling using CBB/CBS and the new | Doug Hogan | |
extension framework. input + ok jsing@ | |||
2017-08-11 | Rewrite the ECPointFormats TLS extension handling using CBB/CBS and the | Doug Hogan | |
new extension framework. input + ok jsing@ | |||
2017-08-10 | first draft of tests for newlocale(3), duplocale(3), uselocale(3) | Ingo Schwarze | |
2017-08-07 | Clang does not support -ffloat-store, so libm fenv test failed on | Alexander Bluhm | |
i386. Gcc uses this option it to store x87 registers to memory. This reduces precision and enforces rounding which this test checks. The same effect can be achieved by using a volatile double variable for the result. This works for both compilers. OK kettenis@ | |||
2017-08-06 | use %Lf for printing long double; silences clang warning | Robert Nagy | |
ok kettenis@ | |||
2017-07-29 | Remove unused function and variable to shut up warning. Put back | Alexander Bluhm | |
a status print that was lost in previous. | |||
2017-07-29 | repair regress for more aggressive post fork checking in library. | Ted Unangst | |
we should not be checking that things explicitly forbidden work. prompted by bluhm | |||
2017-07-27 | Sort subdir, run getaddrinfo test, remove vax case. | Alexander Bluhm | |
2017-07-27 | Sort expected getaddrinfo output in inet4 inet6 order, then the | Alexander Bluhm | |
test passes. | |||
2017-07-27 | Fix all clang warnings in libc regress and cleanup some make files. | Alexander Bluhm | |
2017-07-27 | Mark the invalid memory location as volatile, otherwise clang would | Alexander Bluhm | |
optimize the access to it with an illegal instruction. But the tests needs a SIGSEGV, it would fail with SIGILL. | |||
2017-07-24 | Extend the SNI tests to ensure that we have a hostname in the session | Joel Sing | |
after a successful tlsext_sni_serverhello_parse() and that tlsext_sni_clienthello_parse() fails if we have an existing session and the SNI is mismatched. |