summaryrefslogtreecommitdiff
path: root/src/test/test-extract-word.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2015-11-11 22:53:05 +0100
committerLennart Poettering <lennart@poettering.net>2015-11-11 22:53:05 +0100
commitc89f52ac6938374972253d8752ed65f3af0b3ef4 (patch)
treec700addb5615fe76a52c6bf3a5d9a1ea256a6de4 /src/test/test-extract-word.c
parentc129bd5df3ca08eb352cf69d01d2f374552624ae (diff)
core: fix dependency parsing
3d793d29059a7ddf5282efa6b32b953c183d7a4d broke parsing of unit file names that include backslashes, as extract_first_word() strips those. Fix this, by introducing a new EXTRACT_RETAIN_ESCAPE flag which disables looking at any flags, thus being compatible with the classic FOREACH_WORD() behaviour.
Diffstat (limited to 'src/test/test-extract-word.c')
-rw-r--r--src/test/test-extract-word.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/test-extract-word.c b/src/test/test-extract-word.c
index 09698c07c7..65d3a0a96e 100644
--- a/src/test/test-extract-word.c
+++ b/src/test/test-extract-word.c
@@ -325,6 +325,18 @@ static void test_extract_first_word(void) {
assert_se(extract_first_word(&p, &t, ":", EXTRACT_DONT_COALESCE_SEPARATORS) == 0);
assert_se(!t);
assert_se(!p);
+
+ p = "foo\\xbar";
+ assert_se(extract_first_word(&p, &t, NULL, 0) > 0);
+ assert_se(streq(t, "fooxbar"));
+ free(t);
+ assert_se(p == NULL);
+
+ p = "foo\\xbar";
+ assert_se(extract_first_word(&p, &t, NULL, EXTRACT_RETAIN_ESCAPE) > 0);
+ assert_se(streq(t, "foo\\xbar"));
+ free(t);
+ assert_se(p == NULL);
}
static void test_extract_first_word_and_warn(void) {