summaryrefslogtreecommitdiff
path: root/unittest
diff options
context:
space:
mode:
authorJoel Rosdahl <joel@rosdahl.net>2022-10-05 19:52:45 +0200
committerJoel Rosdahl <joel@rosdahl.net>2022-10-05 19:52:45 +0200
commitf3fca98dae712370b279d881594e8bc1087daf24 (patch)
tree6ec1845a11c056088ff0f9effc92240cf1b543a1 /unittest
parent8b65880b5ad817156b58c58b5133aafc99b0a264 (diff)
downloadccache-f3fca98dae712370b279d881594e8bc1087daf24.tar.gz
Revert "feat: Support auto depend mode for MSVC without /showIncludes (#1158)"
This reverts commit 8b65880b5ad817156b58c58b5133aafc99b0a264. See <https://github.com/ccache/ccache/pull/1158#issuecomment-1268748557>.
Diffstat (limited to 'unittest')
-rw-r--r--unittest/test_Config.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/unittest/test_Config.cpp b/unittest/test_Config.cpp
index f9b772aa..0226101f 100644
--- a/unittest/test_Config.cpp
+++ b/unittest/test_Config.cpp
@@ -64,7 +64,6 @@ TEST_CASE("Config: default values")
CHECK(config.log_file().empty());
CHECK(config.max_files() == 0);
CHECK(config.max_size() == static_cast<uint64_t>(5) * 1000 * 1000 * 1000);
- CHECK(config.msvc_dep_prefix().empty());
CHECK(config.path().empty());
CHECK_FALSE(config.pch_external_checksum());
CHECK(config.prefix_command().empty());
@@ -123,7 +122,6 @@ TEST_CASE("Config::update_from_file")
"log_file = $USER${USER} \n"
"max_files = 17\n"
"max_size = 123M\n"
- "msvc_dep_prefix = Note: including file:\n"
"path = $USER.x\n"
"pch_external_checksum = true\n"
"prefix_command = x$USER\n"
@@ -164,7 +162,6 @@ TEST_CASE("Config::update_from_file")
CHECK(config.log_file() == FMT("{0}{0}", user));
CHECK(config.max_files() == 17);
CHECK(config.max_size() == 123 * 1000 * 1000);
- CHECK(config.msvc_dep_prefix() == "Note: including file:");
CHECK(config.path() == FMT("{}.x", user));
CHECK(config.pch_external_checksum());
CHECK(config.prefix_command() == FMT("x{}", user));
@@ -409,7 +406,6 @@ TEST_CASE("Config::visit_items")
"log_file = lf\n"
"max_files = 4711\n"
"max_size = 98.7M\n"
- "msvc_dep_prefix = mdp\n"
"namespace = ns\n"
"path = p\n"
"pch_external_checksum = true\n"
@@ -471,7 +467,6 @@ TEST_CASE("Config::visit_items")
"(test.conf) log_file = lf",
"(test.conf) max_files = 4711",
"(test.conf) max_size = 98.7M",
- "(test.conf) msvc_dep_prefix = mdp",
"(test.conf) namespace = ns",
"(test.conf) path = p",
"(test.conf) pch_external_checksum = true",