Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-04-09 | Merge remote-tracking branch 'tor-github/pr/1801/head' | Nick Mathewson | |
2020-04-09 | Make sure that we free 'addr' at the end of a pair of addr tests | Nick Mathewson | |
Fixes a couple of Coverity warnings about possible memory leaks. Bug not in any released Tor. | |||
2020-04-09 | test/circuitbuild: Add a test for onionskin_answer() | teor | |
Part of 33633. | |||
2020-04-09 | test/circuitbuild: Add tests for circuit_extend() | teor | |
Part of 33633. | |||
2020-04-09 | test/circuitbuild: Add tests for open_connection_for_extend | teor | |
Part of 33633. | |||
2020-04-09 | test/circuitbuild: Add tests for extend_lspec_valid | teor | |
Part of 33633. | |||
2020-04-09 | test/circuitbuild: Make some tests fork | teor | |
Since we're testing IF_BUG_ONCE(), we need to fork. Part of 33633. | |||
2020-04-09 | test/circuitbuild: Tests for adding ed25519 keys | teor | |
Add tests for circuit_extend_add_ed25519_helper(). Part of 33633. | |||
2020-04-09 | test/circuitbuild: Add a test for extend_state_valid | teor | |
Part of 33633. | |||
2020-04-09 | test/circuitbuid: Fix new_route_len_unhandled_exit | teor | |
Make test_new_route_len_unhandled_exit more robust, by always tearing down logs. (Rather than just tearing them down on success.) | |||
2020-04-09 | test/circuitbuild: Refactor test case array | teor | |
Avoid repeating test names. Part of 33633. | |||
2020-04-08 | Merge branch 'tor-github/pr/1857' | George Kadianakis | |
2020-04-08 | test: Unit test for missing ExtendedErrors | David Goulet | |
Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2020-04-08 | Merge branch 'maint-0.4.3' | David Goulet | |
2020-04-08 | Correct 'was not internal' to 'was internal' in test_external_ip() | Mrigyen Sawant | |
2020-04-07 | Added tests for tor_addr_is_null/valid() | MrSquanchee | |
Added tests for tor_addr_is_valid(), and added tests for tor_addr_is_null(), which is not modfied. Ticket 33679 | |||
2020-04-07 | Merge branch 'pr1838_squashed' | teor | |
2020-04-07 | Add a test script to check subsystem order as part of make check. | Nick Mathewson | |
2020-04-04 | Merge branch 'maint-0.4.3' | teor | |
2020-04-03 | Change starting file descriptor for tests. | Putta Khunchalee | |
2020-04-01 | Merge branch 'tor-github/pr/1844' | David Goulet | |
2020-03-30 | hs-v3: Move ob_subcreds to hs_service_state_t. | George Kadianakis | |
It's more natural there since it's runtime state. | |||
2020-03-30 | Merge branch 'maint-0.4.3' | David Goulet | |
2020-03-30 | hs-v3: Relax severity of a log message when decoding descriptors. | George Kadianakis | |
Make it LOG_PROTOCOL_WARN and also add the expiration timestamp in there to ease debugging in the future. | |||
2020-03-30 | Merge branch 'tor-github/pr/1775' | David Goulet | |
2020-03-30 | Update expected log messages in tests to new format. | Nick Mathewson | |
2020-03-23 | Merge branch 'maint-0.4.3' | George Kadianakis | |
2020-03-23 | Merge branch 'tor-github/pr/1788' into maint-0.4.3 | George Kadianakis | |
2020-03-21 | parseconf: Add ORPort and DirPort auto tests | teor | |
These tests don't actually trigger bug 32588, but they do increase the coverage of the auto port config code. Tests for 32588. | |||
2020-03-21 | Merge branch 'bug32588_043' into bug32588_master | teor | |
2020-03-21 | Merge branch 'bug32588_042' into bug32588_043 | teor | |
Merge static function declaration deletions from bug32588_042 and maint-0.4.3 in app/config/config.c. | |||
2020-03-21 | Merge branch 'bug32588_041' into bug32588_042 | teor | |
2020-03-21 | Merge branch 'bug32588_035' into bug32588_041 | teor | |
Merge tests from maint-0.4.1 with new tests from bug32588_035 in test_router.c. | |||
2020-03-21 | Add a test for the localhost case. | Nick Mathewson | |
2020-03-21 | Extend test to handle router_get_advertised_ipv6_or_ap | Nick Mathewson | |
2020-03-21 | Add a test for router_get_advertised_or_port_by_af(). | Nick Mathewson | |
2020-03-21 | Add tests for get_first_advertised_{addr,port}_by_type_af() | Nick Mathewson | |
2020-03-20 | Merge branch 'maint-0.4.3' | teor | |
2020-03-20 | Merge branch 'maint-0.4.2' into maint-0.4.3 | teor | |
2020-03-20 | Merge branch 'maint-0.4.1' into maint-0.4.2 | teor | |
2020-03-19 | Merge branch 'ticket33643_skip_035' into ticket33643_skip_041 | Nick Mathewson | |
2020-03-19 | Add a TOR_SKIP_TESTCASES environment variable for suppressing tests. | Nick Mathewson | |
For example, "TOR_SKIP_TESTCASES=crypto/.. ./src/test/test" will run the tests and suppress all the "crypto/" tests. You could get the same effect by running "./src/test/test :crypto/..", but that can be harder to arrange from CI. Part of a fix/workaround for 33643. | |||
2020-03-19 | Merge branch 'tor-github/pr/1778' | George Kadianakis | |
2020-03-19 | Merge remote-tracking branch 'tor-github/pr/1807/head' | Nick Mathewson | |
2020-03-19 | Merge branch 'tor-github/pr/1792' | George Kadianakis | |
2020-03-19 | hs-v3: Improve accessor semantic of client cached object | David Goulet | |
Add an inline helper function that indicates if the cached object contains a decrypted descriptor or not. The descriptor object is NULL if tor is unable to decrypt it (lacking client authorization) and some actions need to be done only when we have a decrypted object. This improves code semantic. Fixes #33458 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2020-03-19 | coverity: Silence spurious unreachable warning | teor | |
Closes bug 33641; not in any released version of tor. | |||
2020-03-17 | Merge branch 'maint-0.4.3' | Nick Mathewson | |
2020-03-17 | Merge branch 'maint-0.4.2' into maint-0.4.3 | Nick Mathewson | |
2020-03-17 | Merge branch 'maint-0.4.1' into maint-0.4.2 | Nick Mathewson | |