If true, ccache will cache source file hashes based on device, inode and
timestamps. This reduces the time spent on hashing include files since the
- result can be resused between compilations. The default is true. The feature
+ result can be reused between compilations. The default is true. The feature
requires <<config_temporary_dir,*temporary_dir*>> to be located on a local
filesystem of a supported type.
+
SUBCASE("UNKNOWN -x option (uppercase)")
{
- ctx.orig_args = Args::from_string("gcc -x UNSUPPORTED_LANGUGAGE -c foo.c");
+ ctx.orig_args = Args::from_string("gcc -x UNSUPPORTED_LANGUAGE -c foo.c");
const ProcessArgsResult result = process_args(ctx);
CHECK(result.error == Statistic::unsupported_source_language);
CHECK(ctx.args_info.actual_language == "");