summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/tests/include/flb_tests_initialize_tls.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 11:19:16 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 12:07:37 +0000
commitb485aab7e71c1625cfc27e0f92c9509f42378458 (patch)
treeae9abe108601079d1679194de237c9a435ae5b55 /src/fluent-bit/tests/include/flb_tests_initialize_tls.h
parentAdding upstream version 1.44.3. (diff)
downloadnetdata-b485aab7e71c1625cfc27e0f92c9509f42378458.tar.xz
netdata-b485aab7e71c1625cfc27e0f92c9509f42378458.zip
Adding upstream version 1.45.3+dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/fluent-bit/tests/include/flb_tests_initialize_tls.h')
-rw-r--r--src/fluent-bit/tests/include/flb_tests_initialize_tls.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/fluent-bit/tests/include/flb_tests_initialize_tls.h b/src/fluent-bit/tests/include/flb_tests_initialize_tls.h
new file mode 100644
index 000000000..bfe16f229
--- /dev/null
+++ b/src/fluent-bit/tests/include/flb_tests_initialize_tls.h
@@ -0,0 +1,44 @@
+/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+
+/* Fluent Bit
+ * ==========
+ * Copyright (C) 2019-2020 The Fluent Bit Authors
+ * Copyright (C) 2015-2018 Treasure Data Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef FLB_TESTS_INITALIZE_TLS_H
+#define FLB_TESTS_INITALIZE_TLS_H
+
+#include <fluent-bit/flb_config.h>
+#include <fluent-bit/flb_mem.h>
+
+struct flb_config *test_env_config = NULL;
+
+static inline void flb_test_env_config_init(void)
+{
+ test_env_config = flb_config_init();
+
+ if (test_env_config == NULL) {
+ return;
+ }
+}
+
+static inline void flb_test_env_config_destroy(void) {
+ if (test_env_config != NULL) {
+ flb_config_exit(test_env_config);
+ }
+}
+
+#endif