summaryrefslogtreecommitdiff
path: root/src/test/test-string-util.c
diff options
context:
space:
mode:
authorSven Eden <yamakuzure@gmx.net>2018-08-23 08:17:24 +0200
committerSven Eden <yamakuzure@gmx.net>2018-08-24 16:47:08 +0200
commit8e3c2431d298404c67115ab9781e3f4e289a01cd (patch)
tree84ef41d37a479070ee56410ce83b48fdbcec3f17 /src/test/test-string-util.c
parentfe9f813b914df4d0451f8e7b12eca0408db625bf (diff)
Prep v239: Unmask delete_chars()
Diffstat (limited to 'src/test/test-string-util.c')
-rw-r--r--src/test/test-string-util.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/test/test-string-util.c b/src/test/test-string-util.c
index a9e322f0c..202af8bcc 100644
--- a/src/test/test-string-util.c
+++ b/src/test/test-string-util.c
@@ -384,7 +384,6 @@ static void test_endswith_no_case(void) {
assert_se(!endswith_no_case("foobar", "FOOBARFOOFOO"));
}
-#if 0 /// UNNEEDED by elogind
static void test_delete_chars(void) {
char *s, input[] = " hello, waldo. abc";
@@ -392,7 +391,6 @@ static void test_delete_chars(void) {
assert_se(streq(s, "hello,waldo.abc"));
assert_se(s == input);
}
-#endif // 0
static void test_delete_trailing_chars(void) {
@@ -526,9 +524,7 @@ int main(int argc, char *argv[]) {
test_foreach_word_quoted();
test_endswith();
test_endswith_no_case();
-#if 0 /// UNNEEDED by elogind
test_delete_chars();
-#endif // 0
test_delete_trailing_chars();
test_delete_trailing_slashes();
test_skip_leading_chars();