richardphibel / rpms / systemd

Forked from rpms/systemd 2 years ago
Clone
62b301
From 48b22b82853c6697669b078de5eae35728fbba30 Mon Sep 17 00:00:00 2001
62b301
From: Yu Watanabe <watanabe.yu+github@gmail.com>
62b301
Date: Tue, 11 Sep 2018 13:41:09 +0900
62b301
Subject: [PATCH] test: replace swear words by 'hoge'
62b301
62b301
(cherry picked from commit a2917d3d2a3ce926f74b63aa60a47f838a8e1f83)
62b301
62b301
Related: #2049788
62b301
---
62b301
 src/test/test-cgroup-util.c |  2 +-
62b301
 src/test/test-strv.c        | 10 +++++-----
62b301
 2 files changed, 6 insertions(+), 6 deletions(-)
62b301
62b301
diff --git a/src/test/test-cgroup-util.c b/src/test/test-cgroup-util.c
62b301
index 60d7bb19cb..2cb93ad0be 100644
62b301
--- a/src/test/test-cgroup-util.c
62b301
+++ b/src/test/test-cgroup-util.c
62b301
@@ -296,7 +296,7 @@ static void test_shift_path(void) {
62b301
         test_shift_path_one("/foobar/waldo", "/", "/foobar/waldo");
62b301
         test_shift_path_one("/foobar/waldo", "", "/foobar/waldo");
62b301
         test_shift_path_one("/foobar/waldo", "/foobar", "/waldo");
62b301
-        test_shift_path_one("/foobar/waldo", "/fuckfuck", "/foobar/waldo");
62b301
+        test_shift_path_one("/foobar/waldo", "/hogehoge", "/foobar/waldo");
62b301
 }
62b301
 
62b301
 static void test_mask_supported(void) {
62b301
diff --git a/src/test/test-strv.c b/src/test/test-strv.c
62b301
index 9e7d98500f..165a5de91d 100644
62b301
--- a/src/test/test-strv.c
62b301
+++ b/src/test/test-strv.c
62b301
@@ -279,18 +279,18 @@ static void test_strv_split_nulstr(void) {
62b301
 
62b301
 static void test_strv_parse_nulstr(void) {
62b301
         _cleanup_strv_free_ char **l = NULL;
62b301
-        const char nulstr[] = "fuck\0fuck2\0fuck3\0\0fuck5\0\0xxx";
62b301
+        const char nulstr[] = "hoge\0hoge2\0hoge3\0\0hoge5\0\0xxx";
62b301
 
62b301
         l = strv_parse_nulstr(nulstr, sizeof(nulstr)-1);
62b301
         assert_se(l);
62b301
         puts("Parse nulstr:");
62b301
         strv_print(l);
62b301
 
62b301
-        assert_se(streq(l[0], "fuck"));
62b301
-        assert_se(streq(l[1], "fuck2"));
62b301
-        assert_se(streq(l[2], "fuck3"));
62b301
+        assert_se(streq(l[0], "hoge"));
62b301
+        assert_se(streq(l[1], "hoge2"));
62b301
+        assert_se(streq(l[2], "hoge3"));
62b301
         assert_se(streq(l[3], ""));
62b301
-        assert_se(streq(l[4], "fuck5"));
62b301
+        assert_se(streq(l[4], "hoge5"));
62b301
         assert_se(streq(l[5], ""));
62b301
         assert_se(streq(l[6], "xxx"));
62b301
 }