[PATCH v9 9/9] app/test: enable subset of unit tests on Windows
Stephen Hemminger
stephen at networkplumber.org
Wed Dec 1 19:45:35 CET 2021
On Wed, 1 Dec 2021 10:05:38 -0800
Jie Zhou <jizh at linux.microsoft.com> wrote:
> diff --git a/app/test/test_dmadev.c b/app/test/test_dmadev.c
> index b206db27ae..c2ea9090cf 100644
> --- a/app/test/test_dmadev.c
> +++ b/app/test/test_dmadev.c
> @@ -2,6 +2,17 @@
> * Copyright(c) 2021 HiSilicon Limited
> * Copyright(c) 2021 Intel Corporation
> */
> +#include "test.h"
> +
> +#ifdef RTE_EXEC_ENV_WINDOWS
> +static int
> +test_dma(void)
> +{
> + printf("dma not supported on Windows, skipping test\n");
> + return TEST_SKIPPED;
> +}
> +
> +#else
Rather than littering code with ifdefs is it not possible to
just not build these tests on Windows?
More information about the dev
mailing list