diff options
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/buffers.h | 2 | ||||
-rw-r--r-- | src/common/compat.h | 2 | ||||
-rw-r--r-- | src/common/compat_libevent.h | 2 | ||||
-rw-r--r-- | src/common/compat_threads.h | 2 | ||||
-rw-r--r-- | src/common/timers.h | 2 | ||||
-rw-r--r-- | src/common/token_bucket.h | 2 | ||||
-rw-r--r-- | src/common/torlog.h | 2 | ||||
-rw-r--r-- | src/common/util.h | 2 | ||||
-rw-r--r-- | src/common/util_bug.h | 2 | ||||
-rw-r--r-- | src/common/util_format.h | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/src/common/buffers.h b/src/common/buffers.h index 5956e3484b..80103af776 100644 --- a/src/common/buffers.h +++ b/src/common/buffers.h @@ -14,7 +14,7 @@ #include "common/compat.h" #include "lib/cc/torint.h" -#include "common/testsupport.h" +#include "lib/testsupport/testsupport.h" typedef struct buf_t buf_t; diff --git a/src/common/compat.h b/src/common/compat.h index 654f103905..dff29a42b0 100644 --- a/src/common/compat.h +++ b/src/common/compat.h @@ -15,7 +15,7 @@ #endif #endif #include "lib/cc/torint.h" -#include "common/testsupport.h" +#include "lib/testsupport/testsupport.h" #ifdef HAVE_SYS_PARAM_H #include <sys/param.h> #endif diff --git a/src/common/compat_libevent.h b/src/common/compat_libevent.h index 76a074d93a..4b2672b7b5 100644 --- a/src/common/compat_libevent.h +++ b/src/common/compat_libevent.h @@ -5,7 +5,7 @@ #define TOR_COMPAT_LIBEVENT_H #include "orconfig.h" -#include "common/testsupport.h" +#include "lib/testsupport/testsupport.h" void configure_libevent_logging(void); void suppress_libevent_log_msg(const char *msg); diff --git a/src/common/compat_threads.h b/src/common/compat_threads.h index ed0ece5ab9..19e0a4f119 100644 --- a/src/common/compat_threads.h +++ b/src/common/compat_threads.h @@ -8,7 +8,7 @@ #include "orconfig.h" #include "lib/cc/torint.h" -#include "common/testsupport.h" +#include "lib/testsupport/testsupport.h" #if defined(HAVE_PTHREAD_H) && !defined(_WIN32) #include <pthread.h> diff --git a/src/common/timers.h b/src/common/timers.h index 6b6179ca7c..2348c7b7c1 100644 --- a/src/common/timers.h +++ b/src/common/timers.h @@ -5,7 +5,7 @@ #define TOR_TIMERS_H #include "orconfig.h" -#include "common/testsupport.h" +#include "lib/testsupport/testsupport.h" struct monotime_t; typedef struct timeout tor_timer_t; diff --git a/src/common/token_bucket.h b/src/common/token_bucket.h index fd6834f262..787317fa1f 100644 --- a/src/common/token_bucket.h +++ b/src/common/token_bucket.h @@ -10,7 +10,7 @@ #define TOR_TOKEN_BUCKET_H #include "lib/cc/torint.h" -#include "common/testsupport.h" +#include "lib/testsupport/testsupport.h" /** Largest allowable burst value for a token buffer. */ #define TOKEN_BUCKET_MAX_BURST INT32_MAX diff --git a/src/common/torlog.h b/src/common/torlog.h index 56f922d406..66141ab0ae 100644 --- a/src/common/torlog.h +++ b/src/common/torlog.h @@ -13,7 +13,7 @@ #ifndef TOR_TORLOG_H #include "common/compat.h" -#include "common/testsupport.h" +#include "lib/testsupport/testsupport.h" #ifdef HAVE_SYSLOG_H #include <syslog.h> diff --git a/src/common/util.h b/src/common/util.h index cb8cefb12c..d1528886c8 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -15,7 +15,7 @@ #include "lib/cc/torint.h" #include "common/compat.h" #include "lib/ctime/di_ops.h" -#include "common/testsupport.h" +#include "lib/testsupport/testsupport.h" #include <stdio.h> #include <stdlib.h> #ifdef _WIN32 diff --git a/src/common/util_bug.h b/src/common/util_bug.h index 1d499a197d..9659f59b7e 100644 --- a/src/common/util_bug.h +++ b/src/common/util_bug.h @@ -38,7 +38,7 @@ #include "orconfig.h" #include "common/compat.h" -#include "common/testsupport.h" +#include "lib/testsupport/testsupport.h" /* Replace assert() with a variant that sends failures to the log before * calling assert() normally. diff --git a/src/common/util_format.h b/src/common/util_format.h index e49efd05c2..3580c28637 100644 --- a/src/common/util_format.h +++ b/src/common/util_format.h @@ -7,7 +7,7 @@ #ifndef TOR_UTIL_FORMAT_H #define TOR_UTIL_FORMAT_H -#include "common/testsupport.h" +#include "lib/testsupport/testsupport.h" #include "lib/cc/torint.h" /** @{ */ |