> So, "Skipping" means "not a single search token was found in file", > "Handling" (without result print) means "one or more tokens were found, > processing was done, but rule search pattern wasn't detected". > I was just trying to understand how it works underneath. Thank you again!
Exactly. You may want to run coccinelle/scripts/idutils_index.sh in your code base. Then if you use the argument --use-idutils it will select the relevant files up front from the index and be even more efficient. Skipping means that it essentialy did a grep and didn't find anything. If the argument after --use-idutils does not begin with -, it will think that it is the name of the index. The easiest is to just put --use-idutils last. julia _______________________________________________ Cocci mailing list [email protected] https://systeme.lip6.fr/mailman/listinfo/cocci
