Searched defs:test_shell_maybe_quote_one (Results 1 - 1 of 1) sorted by relevance

/systemd/src/test/
H A Dtest-util.c1535 static void test_shell_maybe_quote_one(const char *s, const char *expected) { function
1544 test_shell_maybe_quote_one("", "");
1545 test_shell_maybe_quote_one("\\", "\"\\\\\"");
1546 test_shell_maybe_quote_one("\"", "\"\\\"\"");
1547 test_shell_maybe_quote_one("foobar", "foobar");
1548 test_shell_maybe_quote_one("foo bar", "\"foo bar\"");
1549 test_shell_maybe_quote_one("foo \"bar\" waldo", "\"foo \\\"bar\\\" waldo\"");
1550 test_shell_maybe_quote_one("foo$bar", "\"foo\\$bar\"");

Completed in 15 milliseconds