}
m_sr = sr;
if (m_config.debug()) {
- LOG("inode cache file loaded: {}", inode_cache_file);
+ LOG("Inode cache file loaded: {}", inode_cache_file);
}
return true;
}
return false;
}
- LOG("inode cache {}: {}", found ? "hit" : "miss", path);
+ LOG("Inode cache {}: {}", found ? "hit" : "miss", path);
if (m_config.debug()) {
if (found) {
return false;
}
- LOG("inode cache insert: {}", path);
+ LOG("Inode cache insert: {}", path);
return true;
}
local source_file=$2
local type=$3
- local actual=$(grep -c "inode cache $type: $source_file" ${source_file/%.c/.o}.*.ccache-log)
+ local actual=$(grep -c "Inode cache $type: $source_file" ${source_file/%.c/.o}.*.ccache-log)
if [ $actual -ne $expected ]; then
test_failed_internal "Found $actual (expected $expected) $type for $source_file"
fi