mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Merge branch 'pre_formatter_cleanups_squashed'
This commit is contained in:
@@ -33,7 +33,7 @@ int a_tangled_web(int x) NOINLINE;
|
||||
int we_weave(int x) NOINLINE;
|
||||
|
||||
#ifdef HAVE_CFLAG_WNULL_DEREFERENCE
|
||||
DISABLE_GCC_WARNING(null-dereference)
|
||||
DISABLE_GCC_WARNING("-Wnull-dereference")
|
||||
#endif
|
||||
int
|
||||
crash(int x)
|
||||
@@ -55,7 +55,7 @@ crash(int x)
|
||||
return crashtype;
|
||||
}
|
||||
#ifdef HAVE_CFLAG_WNULL_DEREFERENCE
|
||||
ENABLE_GCC_WARNING(null-dereference)
|
||||
ENABLE_GCC_WARNING("-Wnull-dereference")
|
||||
#endif
|
||||
|
||||
int
|
||||
|
||||
@@ -136,7 +136,7 @@ test_clist_maps(void *arg)
|
||||
channel_note_destroy_pending(ch2, 200);
|
||||
channel_note_destroy_pending(ch2, 205);
|
||||
channel_note_destroy_pending(ch1, 100);
|
||||
tt_assert(circuit_id_in_use_on_channel(205, ch2))
|
||||
tt_assert(circuit_id_in_use_on_channel(205, ch2));
|
||||
tt_assert(circuit_id_in_use_on_channel(200, ch2));
|
||||
tt_assert(circuit_id_in_use_on_channel(100, ch1));
|
||||
|
||||
|
||||
@@ -4726,7 +4726,7 @@ test_config_parse_port_config__ports__ports_given(void *data)
|
||||
port_cfg = (port_cfg_t *)smartlist_get(slout, 0);
|
||||
tt_int_op(port_cfg->port, OP_EQ, CFG_AUTO_PORT);
|
||||
tor_addr_parse(&addr, "127.0.0.46");
|
||||
tt_assert(tor_addr_eq(&port_cfg->addr, &addr))
|
||||
tt_assert(tor_addr_eq(&port_cfg->addr, &addr));
|
||||
|
||||
// Test success with a port of auto in mixed case
|
||||
config_free_lines(config_port_valid); config_port_valid = NULL;
|
||||
@@ -4740,7 +4740,7 @@ test_config_parse_port_config__ports__ports_given(void *data)
|
||||
port_cfg = (port_cfg_t *)smartlist_get(slout, 0);
|
||||
tt_int_op(port_cfg->port, OP_EQ, CFG_AUTO_PORT);
|
||||
tor_addr_parse(&addr, "127.0.0.46");
|
||||
tt_assert(tor_addr_eq(&port_cfg->addr, &addr))
|
||||
tt_assert(tor_addr_eq(&port_cfg->addr, &addr));
|
||||
|
||||
// Test success with parsing both an address and an auto port
|
||||
config_free_lines(config_port_valid); config_port_valid = NULL;
|
||||
@@ -4754,7 +4754,7 @@ test_config_parse_port_config__ports__ports_given(void *data)
|
||||
port_cfg = (port_cfg_t *)smartlist_get(slout, 0);
|
||||
tt_int_op(port_cfg->port, OP_EQ, CFG_AUTO_PORT);
|
||||
tor_addr_parse(&addr, "127.0.0.122");
|
||||
tt_assert(tor_addr_eq(&port_cfg->addr, &addr))
|
||||
tt_assert(tor_addr_eq(&port_cfg->addr, &addr));
|
||||
|
||||
// Test failure when asked to parse an invalid address followed by auto
|
||||
config_free_lines(config_port_invalid); config_port_invalid = NULL;
|
||||
@@ -4777,7 +4777,7 @@ test_config_parse_port_config__ports__ports_given(void *data)
|
||||
port_cfg = (port_cfg_t *)smartlist_get(slout, 0);
|
||||
tt_int_op(port_cfg->port, OP_EQ, 656);
|
||||
tor_addr_parse(&addr, "127.0.0.123");
|
||||
tt_assert(tor_addr_eq(&port_cfg->addr, &addr))
|
||||
tt_assert(tor_addr_eq(&port_cfg->addr, &addr));
|
||||
|
||||
// Test failure if we can't parse anything at all
|
||||
config_free_lines(config_port_invalid); config_port_invalid = NULL;
|
||||
|
||||
@@ -29,9 +29,9 @@
|
||||
|
||||
#if defined(ENABLE_OPENSSL)
|
||||
#include "lib/crypt_ops/compat_openssl.h"
|
||||
DISABLE_GCC_WARNING(redundant-decls)
|
||||
DISABLE_GCC_WARNING("-Wredundant-decls")
|
||||
#include <openssl/dh.h>
|
||||
ENABLE_GCC_WARNING(redundant-decls)
|
||||
ENABLE_GCC_WARNING("-Wredundant-decls")
|
||||
#endif /* defined(ENABLE_OPENSSL) */
|
||||
|
||||
/** Run unit tests for Diffie-Hellman functionality. */
|
||||
|
||||
@@ -55,13 +55,13 @@
|
||||
#endif /* defined(_WIN32) */
|
||||
|
||||
#ifdef HAVE_CFLAG_WOVERLENGTH_STRINGS
|
||||
DISABLE_GCC_WARNING(overlength-strings)
|
||||
DISABLE_GCC_WARNING("-Woverlength-strings")
|
||||
/* We allow huge string constants in the unit tests, but not in the code
|
||||
* at large. */
|
||||
#endif
|
||||
#include "vote_descriptors.inc"
|
||||
#ifdef HAVE_CFLAG_WOVERLENGTH_STRINGS
|
||||
ENABLE_GCC_WARNING(overlength-strings)
|
||||
ENABLE_GCC_WARNING("-Woverlength-strings")
|
||||
#endif
|
||||
|
||||
#define NS_MODULE dir_handle_get
|
||||
@@ -258,7 +258,7 @@ test_dir_handle_get_rendezvous2_not_found_if_not_encrypted(void *data)
|
||||
conn = new_dir_conn();
|
||||
|
||||
// connection is not encrypted
|
||||
tt_assert(!connection_dir_is_encrypted(conn))
|
||||
tt_assert(!connection_dir_is_encrypted(conn));
|
||||
|
||||
tt_int_op(directory_handle_command_get(conn, RENDEZVOUS2_GET(), NULL, 0),
|
||||
OP_EQ, 0);
|
||||
|
||||
@@ -45,14 +45,14 @@
|
||||
#include "test/test_connection.h"
|
||||
|
||||
#ifdef HAVE_CFLAG_WOVERLENGTH_STRINGS
|
||||
DISABLE_GCC_WARNING(overlength-strings)
|
||||
DISABLE_GCC_WARNING("-Woverlength-strings")
|
||||
/* We allow huge string constants in the unit tests, but not in the code
|
||||
* at large. */
|
||||
#endif
|
||||
#include "test_descriptors.inc"
|
||||
#include "core/or/circuitlist.h"
|
||||
#ifdef HAVE_CFLAG_WOVERLENGTH_STRINGS
|
||||
ENABLE_GCC_WARNING(overlength-strings)
|
||||
ENABLE_GCC_WARNING("-Woverlength-strings")
|
||||
#endif
|
||||
|
||||
/* Return a statically allocated string representing yesterday's date
|
||||
|
||||
@@ -24,12 +24,12 @@
|
||||
#include "test/rng_test_helpers.h"
|
||||
|
||||
#ifdef HAVE_CFLAG_WOVERLENGTH_STRINGS
|
||||
DISABLE_GCC_WARNING(overlength-strings)
|
||||
DISABLE_GCC_WARNING("-Woverlength-strings")
|
||||
/* We allow huge string constants in the unit tests, but not in the code
|
||||
* at large. */
|
||||
#endif
|
||||
#include "test_hs_descriptor.inc"
|
||||
ENABLE_GCC_WARNING(overlength-strings)
|
||||
ENABLE_GCC_WARNING("-Woverlength-strings")
|
||||
|
||||
/* Test certificate encoding put in a descriptor. */
|
||||
static void
|
||||
|
||||
@@ -491,7 +491,7 @@ test_md_generate(void *arg)
|
||||
}
|
||||
|
||||
#ifdef HAVE_CFLAG_WOVERLENGTH_STRINGS
|
||||
DISABLE_GCC_WARNING(overlength-strings)
|
||||
DISABLE_GCC_WARNING("-Woverlength-strings")
|
||||
/* We allow huge string constants in the unit tests, but not in the code
|
||||
* at large. */
|
||||
#endif
|
||||
@@ -686,7 +686,7 @@ static const char MD_PARSE_TEST_DATA[] =
|
||||
"id rsa1024 2A8wYpHxnkKJ92orocvIQBzeHlE\n"
|
||||
;
|
||||
#ifdef HAVE_CFLAG_WOVERLENGTH_STRINGS
|
||||
ENABLE_GCC_WARNING(overlength-strings)
|
||||
ENABLE_GCC_WARNING("-Woverlength-strings")
|
||||
#endif
|
||||
|
||||
/** More tests for parsing different kinds of microdescriptors, and getting
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
/* Some versions of OpenSSL declare SSL_get_selected_srtp_profile twice in
|
||||
* srtp.h. Suppress the GCC warning so we can build with -Wredundant-decl. */
|
||||
DISABLE_GCC_WARNING(redundant-decls)
|
||||
DISABLE_GCC_WARNING("-Wredundant-decls")
|
||||
|
||||
#include <openssl/opensslv.h>
|
||||
|
||||
@@ -29,7 +29,7 @@ DISABLE_GCC_WARNING(redundant-decls)
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/bn.h>
|
||||
|
||||
ENABLE_GCC_WARNING(redundant-decls)
|
||||
ENABLE_GCC_WARNING("-Wredundant-decls")
|
||||
|
||||
#include "core/or/or.h"
|
||||
#include "lib/log/log.h"
|
||||
|
||||
Reference in New Issue
Block a user