tests: fix some include guards
authorSimon Marchi <simon.marchi@efficios.com>
Mon, 25 Mar 2024 14:17:17 +0000 (10:17 -0400)
committerSimon Marchi <simon.marchi@efficios.com>
Tue, 26 Mar 2024 18:56:36 +0000 (14:56 -0400)
Change-Id: Id8f0f6166039dd04ce36d1742fac41f9b104fca6
Signed-off-by: Simon Marchi <simon.marchi@efficios.com>
Reviewed-on: https://review.lttng.org/c/babeltrace/+/12160
Tested-by: jenkins <jenkins@lttng.org>
Reviewed-by: Philippe Proulx <eeppeliteloop@gmail.com>
tests/lib/conds/utils.hpp
tests/lib/utils/run-in.hpp
tests/utils/common.h

index 0fd4fa0adb2de2b96d395d40cb8c3aa20f8cdfda..c1288c4f52a51f0bedb36c733502210966f8249e 100644 (file)
@@ -4,8 +4,8 @@
  * Copyright (C) 2020 Philippe Proulx <pproulx@efficios.com>
  */
 
-#ifndef TESTS_LIB_CONDS_UTILS_H
-#define TESTS_LIB_CONDS_UTILS_H
+#ifndef TESTS_LIB_CONDS_UTILS_HPP
+#define TESTS_LIB_CONDS_UTILS_HPP
 
 #include <functional>
 #include <string>
@@ -176,4 +176,4 @@ using CondTriggers = bt2s::span<CondTrigger * const>;
  */
 void condMain(int argc, const char **argv, CondTriggers triggers) noexcept;
 
-#endif /* TESTS_LIB_CONDS_UTILS_H */
+#endif /* TESTS_LIB_CONDS_UTILS_HPP */
index d08e931a125cb8e67719ec8765c389b49f405a99..f887d7a1c59b717011d4a7be5954347bda596fbf 100644 (file)
@@ -4,8 +4,8 @@
  * Copyright (C) 2020-2023 EfficiOS, inc.
  */
 
-#ifndef TESTS_LIB_UTILS_H
-#define TESTS_LIB_UTILS_H
+#ifndef TESTS_LIB_UTILS_RUN_IN_HPP
+#define TESTS_LIB_UTILS_RUN_IN_HPP
 
 #include <babeltrace2/babeltrace.h>
 
@@ -46,4 +46,4 @@ public:
  */
 void runIn(RunIn& runIn);
 
-#endif /* TESTS_LIB_UTILS_H */
+#endif /* TESTS_LIB_UTILS_RUN_IN_HPP */
index 14d8830e65eb37b7bf16906d9543040ff63caa4f..cbd96cf14624d6d7686edb0f238d64c22528d177 100644 (file)
@@ -7,9 +7,9 @@
  * Lib BabelTrace - Common function to all tests
  */
 
-#ifndef _TESTS_COMMON_H
-#define _TESTS_COMMON_H
+#ifndef TESTS_UTILS_COMMON_H
+#define TESTS_UTILS_COMMON_H
 
 void recursive_rmdir(const char *path);
 
-#endif /* _TESTS_COMMON_H */
+#endif /* TESTS_UTILS_COMMON_H */
This page took 0.028073 seconds and 4 git commands to generate.