26/01/2022 06:10, Jie Zhou:
> +#ifdef RTE_EXEC_ENV_WINDOWS
> +static int
> +test_missing_c_flag(void)
> +{
> + printf("emissing_c_flag not supported on Windows, skipping test\n");Typo here, will change to missing_c_flag [...] > +#endif /*ifdef RTE_EXEC_ENV_WINDOWS*/ I think such comment would be more explicit as /* !RTE_EXEC_ENV_WINDOWS */ when closing a block which is not compiled on Windows. I will change accordingly.

