Skip to content

Commit 14353d2

Browse files
committed
tests: internal: config_format: yaml: fix path for WIN32
Signed-off-by: Eduardo Silva <[email protected]>
1 parent c793a37 commit 14353d2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/internal/config_format_yaml.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,13 @@
2020
#define FLB_000 FLB_TESTS_CONF_PATH "/fluent-bit.yaml"
2121
#define FLB_001 FLB_TESTS_CONF_PATH "/issue_7559.yaml"
2222
#define FLB_002 FLB_TESTS_CONF_PATH "/processors.yaml"
23+
24+
#ifdef _WIN32
25+
#define FLB_003 FLB_TESTS_CONF_PATH "\\parsers_and_multiline_parsers.yaml"
26+
#else
2327
#define FLB_003 FLB_TESTS_CONF_PATH "/parsers_and_multiline_parsers.yaml"
28+
#endif
29+
2430
#define FLB_004 FLB_TESTS_CONF_PATH "/stream_processor.yaml"
2531
#define FLB_005 FLB_TESTS_CONF_PATH "/plugins.yaml"
2632
#define FLB_006 FLB_TESTS_CONF_PATH "/upstream.yaml"

0 commit comments

Comments
 (0)