]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Add missing “Util::” test case prefix
authorJoel Rosdahl <joel@rosdahl.net>
Sat, 1 Aug 2020 07:34:10 +0000 (09:34 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Sat, 1 Aug 2020 19:11:53 +0000 (21:11 +0200)
unittest/test_Util.cpp

index 440a6e2f3ebd53aa2eadd6a8bcd5a63ef0c88027..fedce207f8c5fdb8a3e281a637c3a7d4696d59a0 100644 (file)
@@ -241,7 +241,7 @@ TEST_CASE("Util::format_argv_for_logging")
   CHECK(Util::format_argv_for_logging(argv_2) == "foo bar");
 }
 
-TEST_CASE("format_hex")
+TEST_CASE("Util::format_hex")
 {
   uint8_t none[] = "";
   uint8_t text[4] = "foo"; // incl. NUL
@@ -252,7 +252,7 @@ TEST_CASE("format_hex")
   CHECK(Util::format_hex(data, sizeof(data)) == "00010203");
 }
 
-TEST_CASE("format_human_readable_size")
+TEST_CASE("Util::format_human_readable_size")
 {
   CHECK(Util::format_human_readable_size(0) == "0.0 MB");
   CHECK(Util::format_human_readable_size(49) == "0.0 MB");
@@ -265,7 +265,7 @@ TEST_CASE("format_human_readable_size")
         == "17.1 GB");
 }
 
-TEST_CASE("format_parsable_size_with_suffix")
+TEST_CASE("Util::format_parsable_size_with_suffix")
 {
   CHECK(Util::format_parsable_size_with_suffix(0) == "0");
   CHECK(Util::format_parsable_size_with_suffix(42 * 1000) == "42000");