diff options
author | Ola Bini <ola@olabini.se> | 2016-01-29 11:38:54 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-02-01 09:50:42 -0500 |
commit | fe92e9bb9647123381a8428ed438283fb1a749f4 (patch) | |
tree | f5b8292d542390ca774300911a919e30264d5cdc /src/test/log_test_helpers.h | |
parent | a5bed4dab2f8521f744d5137e4f439b073c7e5e9 (diff) | |
download | tor-fe92e9bb9647123381a8428ed438283fb1a749f4.tar.gz tor-fe92e9bb9647123381a8428ed438283fb1a749f4.zip |
Add a helper to search for strings in the log, and change option tests to use this helper instead of looking at specific indices in the log list
Diffstat (limited to 'src/test/log_test_helpers.h')
-rw-r--r-- | src/test/log_test_helpers.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/log_test_helpers.h b/src/test/log_test_helpers.h index af8e8a60e7..3a565c67c5 100644 --- a/src/test/log_test_helpers.h +++ b/src/test/log_test_helpers.h @@ -26,6 +26,7 @@ void teardown_capture_of_logs(int prev); const char *mock_saved_log_at(int ix); int mock_saved_severity_at(int ix); int mock_saved_log_number(void); +int mock_saved_log_has_message(const char *msg); #endif |