I think that strictly speaking, Lindydancer's solution needs to be of the form:
#define COVERAGE(x) PRAGMA(Coverage_tool x)
#define PRAGMA(x) _Pragma(#x)
This is the form the standard uses in an example, and it needs to be this way because _Pragma operator processing occurs in a translation phase before string literal concatenation. _Pragma is defined in such a way that it'll only deal with stripping off the leading and trailing quotes when manufacturing the corresponding #pragma - not any other ones that are from 'concatenated' literals.
However, your compiler might be tolerant of the other approach (GCC isn't).
Note: if the #pragma Coverage_tool pragma needs quotes around the on/off operand, then the COVERAGE macro needs to be:
#define COVERAGE(x) PRAGMA(Coverage_tool #x)
Note #2: If you're using Microsoft C, I think you want:
#define COVERAGE(x) PRAGMA(Coverage_tool x)
#define PRAGMA(x) __pragma(x)
because Microsoft's directive is spelled slightly differently and, more annoyingly, doesn't want quotes surrounding the argument to the operator.
But Coverage_tool isn't a documented pragma supported by MSVC, so I think there's still some important information missing.
Since you have some code coverage tool outside of the compiler that's processing this pragma, I think you'll need to hide it from the compiler. The tool will probably define some macro name that it recognizes when it's processing that won't be defined when the compiler is doing its work. For example, lint will define the macro lint when it's processing and Microsoft's resource compiler will define RC_INVOKED.
Let's assume that your code coverage tool defines COVERAGE_TOOL when it's running. You might make both tools happy with something like:
#if COVERAGE_TOOL
#define COVERAGE(x) PRAGMA(Coverage_tool x)
#define PRAGMA(x) _Pragma(#x)
#else
#define COVERAGE(x)
#endif
But I'm just guessing. I would expect that the docs for the coverage tool would be quite explicit about how these directives need to be integrated into your code if it supports MSVC - you should look there for details (or ask the vendor).
#define:) – BlueRaja - Danny Pflughoeft Apr 7 '11 at 21:07_Pragmacan be used like#pragma, and it works in preprocessor macros. See §6.10.9. – Lindydancer Apr 7 '11 at 21:11