chiark / gitweb /
Prep v239: Do not test ioprio_class_from_to_string()
[elogind.git] / src / test / test-process-util.c
index bc505ae29669c10ec51a924290d517786e185694..f19875daea0d1820aee468f7e05f766eb2b1eb4b 100644 (file)
@@ -1,8 +1,4 @@
 /* SPDX-License-Identifier: LGPL-2.1+ */
-/***
-  Copyright 2010 Lennart Poettering
-  Copyright 2013 Thomas H.P. Andersen
-***/
 
 #include <sched.h>
 #include <sys/mount.h>
@@ -568,6 +564,7 @@ static void test_pid_to_ptr(void) {
 #endif
 }
 
+#if 0 /// UNNEEDED by elogind
 static void test_ioprio_class_from_to_string_one(const char *val, int expected) {
         assert_se(ioprio_class_from_string(val) == expected);
         if (expected >= 0) {
@@ -593,6 +590,7 @@ static void test_ioprio_class_from_to_string(void) {
         test_ioprio_class_from_to_string_one("9", -1);
         test_ioprio_class_from_to_string_one("-1", -1);
 }
+#endif // 0
 
 int main(int argc, char *argv[]) {
         log_set_max_level(LOG_DEBUG);
@@ -626,7 +624,9 @@ int main(int argc, char *argv[]) {
         test_getpid_measure();
         test_safe_fork();
         test_pid_to_ptr();
+#if 0 /// UNNEEDED by elogind
         test_ioprio_class_from_to_string();
+#endif // 0
 
         return 0;
 }