Re: [PATCH v8 06/11] app/test: temporarily "skip" one cmdline test case

2021-11-30 Thread Jie Zhou
On Wed, Nov 24, 2021 at 01:02:13AM +0300, Dmitry Kozlyuk wrote: > 2021-10-25 19:45 (UTC-0700), Jie Zhou: > > cmdline tests pass except one failure at the test_cmdline_socket_fns > > test case with error: failed to open /dev/null for reading! > > Can't it be something like this? > > #ifndef RTE_EX

Re: [PATCH v8 06/11] app/test: temporarily "skip" one cmdline test case

2021-11-23 Thread Dmitry Kozlyuk
2021-10-25 19:45 (UTC-0700), Jie Zhou: > cmdline tests pass except one failure at the test_cmdline_socket_fns > test case with error: failed to open /dev/null for reading! Can't it be something like this? #ifndef RTE_EXEC_ENV_WINDOWS #define NULL_INPUT "/dev/null" #else #define NULL_INPUT "NUL" #

[dpdk-dev] [PATCH v8 06/11] app/test: temporarily "skip" one cmdline test case

2021-10-25 Thread Jie Zhou
cmdline tests pass except one failure at the test_cmdline_socket_fns test case with error: failed to open /dev/null for reading! Temporarily "skip" this case while enable all other passing cases. Issue is tracked internally and will add the corresponding case on Windows in future. Signed-off-by: