Some older tests use, for example, the following template:
#if TEST_STD_VER > 11 <do something useful testing> #else int main() {} #endif
It yields building and running an "empty" test if the condition on TEST_STD_VER evaluates to false. This patch replaces this template with appropriate UNSUPPORTED directive which prevents spending time on building and running such tests in unsupported environment.