DPDK patches and discussions
 help / color / mirror / Atom feed
From: Jie Zhou <jizh@linux.microsoft.com>
To: dev@dpdk.org
Cc: dmitry.kozliuk@gmail.com, roretzla@microsoft.com,
	navasile@linux.microsoft.com, dmitrym@microsoft.com,
	pallavi.kadam@intel.com, talshn@nvidia.com, thomas@monjalon.net,
	aconole@redhat.com
Subject: [dpdk-dev] [PATCH v3 12/13] app/test: replace .sh scripts with .py scripts
Date: Fri,  3 Sep 2021 21:19:14 -0700	[thread overview]
Message-ID: <1630729155-24584-13-git-send-email-jizh@linux.microsoft.com> (raw)
In-Reply-To: <1630729155-24584-1-git-send-email-jizh@linux.microsoft.com>

- Add python script to get coremask
- Add python script to check if system supports hugepages
- Remove two corresponding .sh scripts
- Replace calling of .sh with corresponding .py in meson.build

Signed-off-by: Jie Zhou <jizh@linux.microsoft.com>
---
 app/test/get-coremask.sh | 13 -------------
 app/test/get_coremask.py | 12 ++++++++++++
 app/test/has-hugepage.sh | 11 -----------
 app/test/has_hugepage.py | 25 +++++++++++++++++++++++++
 app/test/meson.build     |  7 ++++---
 5 files changed, 41 insertions(+), 27 deletions(-)
 delete mode 100755 app/test/get-coremask.sh
 create mode 100644 app/test/get_coremask.py
 delete mode 100755 app/test/has-hugepage.sh
 create mode 100644 app/test/has_hugepage.py

diff --git a/app/test/get-coremask.sh b/app/test/get-coremask.sh
deleted file mode 100755
index bb8cf404d2..0000000000
--- a/app/test/get-coremask.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#! /bin/sh -e
-# SPDX-License-Identifier: BSD-3-Clause
-# Copyright(c) 2019 Intel Corporation
-
-if [ "$(uname)" = "Linux" ] ; then
-	cat /sys/devices/system/cpu/present
-elif [ "$(uname)" = "FreeBSD" ] ; then
-	ncpus=$(/sbin/sysctl -n hw.ncpu)
-	echo 0-$(expr $ncpus - 1)
-else
-# fallback
-	echo 0-3
-fi
diff --git a/app/test/get_coremask.py b/app/test/get_coremask.py
new file mode 100644
index 0000000000..13939bcf78
--- /dev/null
+++ b/app/test/get_coremask.py
@@ -0,0 +1,12 @@
+# SPDX-License-Identifier: BSD-3-Clause
+# Copyright (c) 2021 Microsoft Corporation
+"""This script returns the system cpu range"""
+
+import multiprocessing
+
+cpucount = multiprocessing.cpu_count()
+if cpucount is None:
+    # use fallback cpu count
+    print("0-3")
+else:
+    print("0-" + str(cpucount - 1))
diff --git a/app/test/has-hugepage.sh b/app/test/has-hugepage.sh
deleted file mode 100755
index d600fad319..0000000000
--- a/app/test/has-hugepage.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#! /bin/sh
-# SPDX-License-Identifier: BSD-3-Clause
-# Copyright 2020 Mellanox Technologies, Ltd
-
-if [ "$(uname)" = "Linux" ] ; then
-	cat /proc/sys/vm/nr_hugepages || echo 0
-elif [ "$(uname)" = "FreeBSD" ] ; then
-	echo 1 # assume FreeBSD always has hugepages
-else
-	echo 0
-fi
diff --git a/app/test/has_hugepage.py b/app/test/has_hugepage.py
new file mode 100644
index 0000000000..70107c61fd
--- /dev/null
+++ b/app/test/has_hugepage.py
@@ -0,0 +1,25 @@
+# SPDX-License-Identifier: BSD-3-Clause
+# Copyright (c) 2021 Microsoft Corporation
+"""This script checks if the system supports huge pages"""
+
+import platform
+import ctypes
+
+osName = platform.system()
+if osName == "Linux":
+    with open("/proc/sys/vm/nr_hugepages") as file_o:
+        content = file_o.read()
+        print(content)
+elif osName == "FreeBSD":
+    # Assume FreeBSD always has hugepages enabled
+    print("1")
+elif osName == "Windows":
+    # On Windows, determine if large page is supported based on the
+    # value returned by GetLargePageMinimum. If the return value is zero,
+    # the processor does not support large pages.
+    if ctypes.windll.kernel32.GetLargePageMinimum() > 0:
+        print("1")
+    else:
+        print("0")
+else:
+    print("0")
diff --git a/app/test/meson.build b/app/test/meson.build
index a7611686ad..6960cad80b 100644
--- a/app/test/meson.build
+++ b/app/test/meson.build
@@ -450,7 +450,7 @@ dpdk_test = executable('dpdk-test',
              driver_install_path),
         install: true)
 
-has_hugepage = run_command('has-hugepage.sh').stdout().strip() != '0'
+has_hugepage = run_command(py3, 'has_hugepage.py').stdout().strip() != '0'
 message('hugepage availability: @0@'.format(has_hugepage))
 
 # some perf tests (eg: memcpy perf autotest)take very long
@@ -458,8 +458,9 @@ message('hugepage availability: @0@'.format(has_hugepage))
 timeout_seconds = 600
 timeout_seconds_fast = 10
 
-get_coremask = find_program('get-coremask.sh')
-num_cores_arg = '-l ' + run_command(get_coremask).stdout().strip()
+list_of_cores = run_command(py3, 'get_coremask.py').stdout().strip()
+message('list of cores: @0@'.format(list_of_cores))
+num_cores_arg = '-l ' + list_of_cores
 
 default_test_args = [num_cores_arg]
 
-- 
2.32.0.windows.2


  parent reply	other threads:[~2021-09-04  4:20 UTC|newest]

Thread overview: 245+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-18  6:17 [dpdk-dev] [PATCH v1 00/13] app/test: enable subset of tests on Windows Jie Zhou
2021-08-18  6:17 ` [dpdk-dev] [PATCH v1 01/13] lib: build libraries that some tests depend on Jie Zhou
2021-08-18  6:17 ` [dpdk-dev] [PATCH v1 02/13] driver/mempool: build mempool stack on Windows Jie Zhou
2021-08-18  6:17 ` [dpdk-dev] [PATCH v1 03/13] eal/windows: return ENOTSUP for not supported API Jie Zhou
2021-08-18  6:17 ` [dpdk-dev] [PATCH v1 04/13] app/test: remove unnecessary headers Jie Zhou
2021-08-18  6:17 ` [dpdk-dev] [PATCH v1 05/13] app/test: replace POSIX specific code Jie Zhou
2021-08-18  6:17 ` [dpdk-dev] [PATCH v1 06/13] app/test: exclude ENOTSUP as failure Jie Zhou
2021-08-18  6:17 ` [dpdk-dev] [PATCH v1 07/13] app/test: skip interrupt tests on Windows Jie Zhou
2021-08-18  6:17 ` [dpdk-dev] [PATCH v1 08/13] app/test: temporarily "skip" one cmdline test case Jie Zhou
2021-08-18  6:17 ` [dpdk-dev] [PATCH v1 09/13] app/test: skip two logs_autotest cases on Windows Jie Zhou
2021-08-18  6:17 ` [dpdk-dev] [PATCH v1 10/13] app/test: differentiate a strerror on different OS Jie Zhou
2021-08-18  6:17 ` [dpdk-dev] [PATCH v1 11/13] app/test: remove two alarm_autotest cases Jie Zhou
2021-08-18  6:17 ` [dpdk-dev] [PATCH v1 12/13] app/test: replace .sh scripts with .py scripts Jie Zhou
2021-08-18  6:17 ` [dpdk-dev] [PATCH v1 13/13] app/test: enable subset of unit tests on Windows Jie Zhou
2021-08-18 17:13 ` [dpdk-dev] [PATCH v2 00/13] app/test: enable subset of " Jie Zhou
2021-08-18 17:13   ` [dpdk-dev] [PATCH v2 01/13] lib: build libraries that some tests depend on Jie Zhou
2021-08-18 17:13   ` [dpdk-dev] [PATCH v2 02/13] driver/mempool: build mempool stack on Windows Jie Zhou
2021-08-28 22:43     ` Dmitry Kozlyuk
2021-08-31 17:06       ` Jie Zhou
2021-08-18 17:13   ` [dpdk-dev] [PATCH v2 03/13] eal/windows: return ENOTSUP for not supported API Jie Zhou
2021-08-28 22:44     ` Dmitry Kozlyuk
2021-08-18 17:13   ` [dpdk-dev] [PATCH v2 04/13] app/test: remove unnecessary headers Jie Zhou
2021-08-18 17:13   ` [dpdk-dev] [PATCH v2 05/13] app/test: replace POSIX specific code Jie Zhou
2021-08-18 17:13   ` [dpdk-dev] [PATCH v2 06/13] app/test: exclude ENOTSUP as failure Jie Zhou
2021-08-18 17:13   ` [dpdk-dev] [PATCH v2 07/13] app/test: skip interrupt tests on Windows Jie Zhou
2021-08-18 17:13   ` [dpdk-dev] [PATCH v2 08/13] app/test: temporarily "skip" one cmdline test case Jie Zhou
2021-08-18 17:13   ` [dpdk-dev] [PATCH v2 09/13] app/test: skip two logs_autotest cases on Windows Jie Zhou
2021-08-18 17:13   ` [dpdk-dev] [PATCH v2 10/13] app/test: differentiate a strerror on different OS Jie Zhou
2021-08-18 17:13   ` [dpdk-dev] [PATCH v2 11/13] app/test: remove two alarm_autotest cases Jie Zhou
2021-08-18 17:13   ` [dpdk-dev] [PATCH v2 12/13] app/test: replace .sh scripts with .py scripts Jie Zhou
2021-08-28 22:17     ` Dmitry Kozlyuk
2021-08-31 16:58       ` Jie Zhou
2021-08-18 17:13   ` [dpdk-dev] [PATCH v2 13/13] app/test: enable subset of unit tests on Windows Jie Zhou
2021-08-28 22:18     ` Dmitry Kozlyuk
2021-08-31 17:01       ` Jie Zhou
2021-08-31 17:39         ` Dmitry Kozlyuk
2021-09-04  4:19   ` [dpdk-dev] [PATCH v3 00/13] app/test: enable subset of " Jie Zhou
2021-09-04  4:19     ` [dpdk-dev] [PATCH v3 01/13] lib: build libraries that some tests depend on Jie Zhou
2021-09-04  4:19     ` [dpdk-dev] [PATCH v3 02/13] mempool/stack: build on Windows Jie Zhou
2021-09-04  4:19     ` [dpdk-dev] [PATCH v3 03/13] eal/windows: return ENOTSUP for not supported API Jie Zhou
2021-09-04  4:19     ` [dpdk-dev] [PATCH v3 04/13] app/test: remove unnecessary headers Jie Zhou
2021-09-04  4:19     ` [dpdk-dev] [PATCH v3 05/13] app/test: replace POSIX specific code Jie Zhou
2021-09-04  4:19     ` [dpdk-dev] [PATCH v3 06/13] app/test: exclude ENOTSUP as failure Jie Zhou
2021-09-04  4:19     ` [dpdk-dev] [PATCH v3 07/13] app/test: skip interrupt tests on Windows Jie Zhou
2021-09-04  4:19     ` [dpdk-dev] [PATCH v3 08/13] app/test: temporarily "skip" one cmdline test case Jie Zhou
2021-09-04  4:19     ` [dpdk-dev] [PATCH v3 09/13] app/test: skip two logs_autotest cases on Windows Jie Zhou
2021-09-04  4:19     ` [dpdk-dev] [PATCH v3 10/13] app/test: differentiate a strerror on different OS Jie Zhou
2021-09-04  4:19     ` [dpdk-dev] [PATCH v3 11/13] app/test: remove two alarm_autotest cases Jie Zhou
2021-09-04  4:19     ` Jie Zhou [this message]
2021-09-04  4:19     ` [dpdk-dev] [PATCH v3 13/13] app/test: enable subset of unit tests on Windows Jie Zhou
2021-09-07 13:43       ` Aaron Conole
2021-09-08 22:14         ` Jie Zhou
2021-09-23  7:35           ` Dmitry Kozlyuk
2021-09-30 23:57             ` Jie Zhou
2021-10-14  3:30     ` [dpdk-dev] [PATCH v4 00/12] app/test: enable subset of " Jie Zhou
2021-10-14  3:30       ` [dpdk-dev] [PATCH v4 01/12] lib: build libraries that some tests depend on Jie Zhou
2021-10-14  3:30       ` [dpdk-dev] [PATCH v4 02/12] eal/windows: return ENOTSUP for not supported API Jie Zhou
2021-10-14  3:30       ` [dpdk-dev] [PATCH v4 03/12] app/test: remove unnecessary headers Jie Zhou
2021-10-14  3:30       ` [dpdk-dev] [PATCH v4 04/12] app/test: replace POSIX specific code Jie Zhou
2021-10-14  3:30       ` [dpdk-dev] [PATCH v4 05/12] app/test: exclude ENOTSUP as failure Jie Zhou
2021-10-14  3:30       ` [dpdk-dev] [PATCH v4 06/12] app/test: skip interrupt tests on Windows Jie Zhou
2021-10-14  3:30       ` [dpdk-dev] [PATCH v4 07/12] app/test: temporarily "skip" one cmdline test case Jie Zhou
2021-10-14  3:30       ` [dpdk-dev] [PATCH v4 08/12] app/test: skip two logs_autotest cases on Windows Jie Zhou
2021-10-14  3:30       ` [dpdk-dev] [PATCH v4 09/12] app/test: differentiate a strerror on different OS Jie Zhou
2021-10-14  3:30       ` [dpdk-dev] [PATCH v4 10/12] app/test: remove two alarm_autotest cases Jie Zhou
2021-10-14  3:30       ` [dpdk-dev] [PATCH v4 11/12] app/test: replace .sh scripts with .py scripts Jie Zhou
2021-10-14  3:30       ` [dpdk-dev] [PATCH v4 12/12] app/test: enable subset of unit tests on Windows Jie Zhou
2021-10-14  4:52       ` [dpdk-dev] [PATCH v5 00/12] app/test: enable subset of " Jie Zhou
2021-10-14  4:52         ` [dpdk-dev] [PATCH v5 01/12] lib: build libraries that some tests depend on Jie Zhou
2021-10-14  4:52         ` [dpdk-dev] [PATCH v5 02/12] eal/windows: return ENOTSUP for not supported API Jie Zhou
2021-10-14  4:52         ` [dpdk-dev] [PATCH v5 03/12] app/test: remove unnecessary headers Jie Zhou
2021-10-14  4:52         ` [dpdk-dev] [PATCH v5 04/12] app/test: replace POSIX specific code Jie Zhou
2021-10-14  4:52         ` [dpdk-dev] [PATCH v5 05/12] app/test: exclude ENOTSUP as failure Jie Zhou
2021-10-14  4:52         ` [dpdk-dev] [PATCH v5 06/12] app/test: skip interrupt tests on Windows Jie Zhou
2021-10-14  4:52         ` [dpdk-dev] [PATCH v5 07/12] app/test: temporarily "skip" one cmdline test case Jie Zhou
2021-10-14  4:52         ` [dpdk-dev] [PATCH v5 08/12] app/test: skip two logs_autotest cases on Windows Jie Zhou
2021-10-14  4:52         ` [dpdk-dev] [PATCH v5 09/12] app/test: differentiate a strerror on different OS Jie Zhou
2021-10-14  4:52         ` [dpdk-dev] [PATCH v5 10/12] app/test: remove two alarm_autotest cases Jie Zhou
2021-10-14  4:52         ` [dpdk-dev] [PATCH v5 11/12] app/test: replace .sh scripts with .py scripts Jie Zhou
2021-10-14  4:52         ` [dpdk-dev] [PATCH v5 12/12] app/test: enable subset of unit tests on Windows Jie Zhou
2021-10-14 16:21         ` [dpdk-dev] [PATCH v6 00/12] app/test: enable subset of " Jie Zhou
2021-10-14 16:21           ` [dpdk-dev] [PATCH v6 01/12] lib: build libraries that some tests depend on Jie Zhou
2021-10-25 15:38             ` Thomas Monjalon
2021-10-26  0:47               ` Jie Zhou
2021-10-26  8:44                 ` Thomas Monjalon
2021-10-14 16:21           ` [dpdk-dev] [PATCH v6 02/12] eal/windows: return ENOTSUP for not supported API Jie Zhou
2021-10-14 16:21           ` [dpdk-dev] [PATCH v6 03/12] app/test: remove unnecessary headers Jie Zhou
2021-10-14 16:21           ` [dpdk-dev] [PATCH v6 04/12] app/test: replace POSIX specific code Jie Zhou
2021-10-14 16:21           ` [dpdk-dev] [PATCH v6 05/12] app/test: exclude ENOTSUP as failure Jie Zhou
2021-10-14 16:21           ` [dpdk-dev] [PATCH v6 06/12] app/test: skip interrupt tests on Windows Jie Zhou
2021-10-14 16:21           ` [dpdk-dev] [PATCH v6 07/12] app/test: temporarily "skip" one cmdline test case Jie Zhou
2021-10-14 16:21           ` [dpdk-dev] [PATCH v6 08/12] app/test: skip two logs_autotest cases on Windows Jie Zhou
2021-10-14 16:21           ` [dpdk-dev] [PATCH v6 09/12] app/test: differentiate a strerror on different OS Jie Zhou
2021-10-14 16:21           ` [dpdk-dev] [PATCH v6 10/12] app/test: remove two alarm_autotest cases Jie Zhou
2021-10-14 16:21           ` [dpdk-dev] [PATCH v6 11/12] app/test: replace .sh scripts with .py scripts Jie Zhou
2021-10-14 16:21           ` [dpdk-dev] [PATCH v6 12/12] app/test: enable subset of unit tests on Windows Jie Zhou
2021-10-26  2:26           ` [dpdk-dev] [PATCH v7 00/11] app/test: enable subset of " Jie Zhou
2021-10-26  2:26             ` [dpdk-dev] [PATCH v7 01/11] eal/windows: return ENOTSUP for not supported API Jie Zhou
2021-10-26  2:26             ` [dpdk-dev] [PATCH v7 02/11] app/test: remove unnecessary headers Jie Zhou
2021-10-26  2:26             ` [dpdk-dev] [PATCH v7 03/11] app/test: replace POSIX specific code Jie Zhou
2021-10-26  2:26             ` [dpdk-dev] [PATCH v7 04/11] app/test: exclude ENOTSUP as failure Jie Zhou
2021-10-26  2:26             ` [dpdk-dev] [PATCH v7 05/11] app/test: skip interrupt tests on Windows Jie Zhou
2021-10-26  2:26             ` [dpdk-dev] [PATCH v7 06/11] app/test: temporarily "skip" one cmdline test case Jie Zhou
2021-10-26  2:26             ` [dpdk-dev] [PATCH v7 07/11] app/test: skip two logs_autotest cases on Windows Jie Zhou
2021-10-26  2:26             ` [dpdk-dev] [PATCH v7 08/11] app/test: differentiate a strerror on different OS Jie Zhou
2021-10-26  2:26             ` [dpdk-dev] [PATCH v7 09/11] app/test: remove two alarm_autotest cases Jie Zhou
2021-10-26  2:26             ` [dpdk-dev] [PATCH v7 10/11] app/test: replace .sh scripts with .py scripts Jie Zhou
2021-10-26  2:26             ` [dpdk-dev] [PATCH v7 11/11] app/test: enable subset of unit tests on Windows Jie Zhou
2021-10-26  2:45             ` [dpdk-dev] [PATCH v8 00/11] app/test: enable subset of " Jie Zhou
2021-10-26  2:45               ` [dpdk-dev] [PATCH v8 01/11] eal/windows: return ENOTSUP for not supported API Jie Zhou
2021-10-26  2:45               ` [dpdk-dev] [PATCH v8 02/11] app/test: remove unnecessary headers Jie Zhou
2021-10-26  2:45               ` [dpdk-dev] [PATCH v8 03/11] app/test: replace POSIX specific code Jie Zhou
2021-11-23 22:02                 ` Dmitry Kozlyuk
2021-12-01  1:05                   ` Jie Zhou
2021-12-01  7:19                     ` Dmitry Kozlyuk
2021-10-26  2:45               ` [dpdk-dev] [PATCH v8 04/11] app/test: exclude ENOTSUP as failure Jie Zhou
2021-11-23 22:02                 ` Dmitry Kozlyuk
2021-12-01  0:31                   ` Jie Zhou
2021-10-26  2:45               ` [dpdk-dev] [PATCH v8 05/11] app/test: skip interrupt tests on Windows Jie Zhou
2021-10-26  2:45               ` [dpdk-dev] [PATCH v8 06/11] app/test: temporarily "skip" one cmdline test case Jie Zhou
2021-11-23 22:02                 ` Dmitry Kozlyuk
2021-12-01  0:30                   ` Jie Zhou
2021-10-26  2:45               ` [dpdk-dev] [PATCH v8 07/11] app/test: skip two logs_autotest cases on Windows Jie Zhou
2021-10-26  2:45               ` [dpdk-dev] [PATCH v8 08/11] app/test: differentiate a strerror on different OS Jie Zhou
2021-10-26  2:45               ` [dpdk-dev] [PATCH v8 09/11] app/test: remove two alarm_autotest cases Jie Zhou
2021-10-26  2:46               ` [dpdk-dev] [PATCH v8 10/11] app/test: replace .sh scripts with .py scripts Jie Zhou
2021-11-23 22:15                 ` Dmitry Kozlyuk
2021-12-01  0:29                   ` Jie Zhou
2021-10-26  2:46               ` [dpdk-dev] [PATCH v8 11/11] app/test: enable subset of unit tests on Windows Jie Zhou
2021-12-01 18:05               ` [PATCH v9 0/9] app/test: enable subset of " Jie Zhou
2021-12-01 18:05                 ` [PATCH v9 1/9] eal/windows: return ENOTSUP for not supported API Jie Zhou
2021-12-01 18:05                 ` [PATCH v9 2/9] app/test: remove POSIX-specific code Jie Zhou
2021-12-01 18:05                 ` [PATCH v9 3/9] app/test: fix incorrect errno variable Jie Zhou
2021-12-01 18:05                 ` [PATCH v9 4/9] app/test: skip interrupt tests on Windows Jie Zhou
2021-12-01 18:05                 ` [PATCH v9 5/9] app/test: skip two logs_autotest cases " Jie Zhou
2021-12-01 18:05                 ` [PATCH v9 6/9] app/test: differentiate a strerror on different OS Jie Zhou
2021-12-01 18:05                 ` [PATCH v9 7/9] app/test: remove two alarm_autotest cases Jie Zhou
2021-12-01 18:05                 ` [PATCH v9 8/9] app/test: replace .sh script with .py script Jie Zhou
2021-12-01 18:05                 ` [PATCH v9 9/9] app/test: enable subset of unit tests on Windows Jie Zhou
2021-12-01 18:45                   ` Stephen Hemminger
2021-12-01 18:52                     ` Jie Zhou
2021-12-01 18:58                     ` [EXTERNAL] " Tyler Retzlaff
2021-12-01 18:43                 ` [PATCH v10 0/9] app/test: enable subset of " Jie Zhou
2021-12-01 18:43                   ` [PATCH v10 1/9] eal/windows: return ENOTSUP for not supported API Jie Zhou
2021-12-01 18:43                   ` [PATCH v10 2/9] app/test: remove POSIX-specific code Jie Zhou
2021-12-04  1:05                     ` Dmitry Kozlyuk
2021-12-01 18:43                   ` [PATCH v10 3/9] app/test: fix incorrect errno variable Jie Zhou
2021-12-01 18:44                   ` [PATCH v10 4/9] app/test: skip interrupt tests on Windows Jie Zhou
2021-12-01 18:44                   ` [PATCH v10 5/9] app/test: skip two logs_autotest cases " Jie Zhou
2021-12-01 18:44                   ` [PATCH v10 6/9] app/test: differentiate a strerror on different OS Jie Zhou
2021-12-01 18:44                   ` [PATCH v10 7/9] app/test: remove two alarm_autotest cases Jie Zhou
2021-12-01 18:44                   ` [PATCH v10 8/9] app/test: replace .sh script with .py script Jie Zhou
2021-12-01 18:44                   ` [PATCH v10 9/9] app/test: enable subset of unit tests on Windows Jie Zhou
2021-12-02  9:17                     ` David Marchand
2021-12-02 23:23                       ` Jie Zhou
2021-12-03  0:06                   ` [PATCH v11 0/9] app/test: enable subset of " Jie Zhou
2021-12-03  0:06                     ` [PATCH v11 1/9] eal/windows: return ENOTSUP for not supported API Jie Zhou
2021-12-03  0:06                     ` [PATCH v11 2/9] app/test: remove POSIX-specific code Jie Zhou
2021-12-03  0:06                     ` [PATCH v11 3/9] app/test: fix incorrect errno variable Jie Zhou
2021-12-04  1:05                       ` Dmitry Kozlyuk
2021-12-03  0:06                     ` [PATCH v11 4/9] app/test: skip interrupt tests on Windows Jie Zhou
2021-12-04  1:06                       ` Dmitry Kozlyuk
2021-12-03  0:06                     ` [PATCH v11 5/9] app/test: skip two logs_autotest cases " Jie Zhou
2021-12-04  1:16                       ` Dmitry Kozlyuk
2021-12-03  0:06                     ` [PATCH v11 6/9] app/test: differentiate a strerror on different OS Jie Zhou
2021-12-04  1:33                       ` Dmitry Kozlyuk
2021-12-06 17:25                         ` Jie Zhou
2021-12-03  0:06                     ` [PATCH v11 7/9] app/test: remove two alarm_autotest cases Jie Zhou
2021-12-04  1:06                       ` Dmitry Kozlyuk
2021-12-03  0:06                     ` [PATCH v11 8/9] app/test: replace .sh script with .py script Jie Zhou
2021-12-04  1:06                       ` Dmitry Kozlyuk
2021-12-03  0:06                     ` [PATCH v11 9/9] app/test: enable subset of unit tests on Windows Jie Zhou
2021-12-04  0:07                     ` [PATCH v11 0/9] app/test: enable subset of " Kadam, Pallavi
2021-12-07 21:24                     ` [PATCH v12 00/11] " Jie Zhou
2021-12-07 21:24                       ` [PATCH v12 01/11] eal/windows: return ENOTSUP for not supported API Jie Zhou
2021-12-07 21:24                       ` [PATCH v12 02/11] app/test: remove POSIX-specific code Jie Zhou
2021-12-07 21:24                       ` [PATCH v12 03/11] app/test: fix incorrect errno variable Jie Zhou
2021-12-07 21:24                       ` [PATCH v12 04/11] app/test: skip interrupt tests on Windows Jie Zhou
2021-12-07 21:24                       ` [PATCH v12 05/11] app/test: skip two logs_autotest cases " Jie Zhou
2021-12-07 21:24                       ` [PATCH v12 06/11] app/test: differentiate a strerror on different OS Jie Zhou
2021-12-07 21:24                       ` [PATCH v12 07/11] app/test: remove two alarm_autotest cases Jie Zhou
2021-12-07 21:24                       ` [PATCH v12 08/11] app/test: resolve name collision Jie Zhou
2021-12-07 21:24                       ` [PATCH v12 09/11] app/test: add test stubs for not supported ones Jie Zhou
2021-12-07 21:24                       ` [PATCH v12 10/11] app/test: replace .sh script with .py script Jie Zhou
2021-12-07 21:24                       ` [PATCH v12 11/11] app/test: enable unit test for Windows Jie Zhou
2021-12-08  1:50                       ` [PATCH v13 00/11] app/test: enable subset of tests on Windows Jie Zhou
2021-12-08  1:50                         ` [PATCH v13 01/11] eal/windows: return ENOTSUP for not supported API Jie Zhou
2021-12-08  1:50                         ` [PATCH v13 02/11] app/test: remove POSIX-specific code Jie Zhou
2021-12-08  1:50                         ` [PATCH v13 03/11] app/test: fix incorrect errno variable Jie Zhou
2021-12-08  1:50                         ` [PATCH v13 04/11] app/test: skip interrupt tests on Windows Jie Zhou
2021-12-08  1:50                         ` [PATCH v13 05/11] app/test: skip two logs_autotest cases " Jie Zhou
2021-12-08  1:50                         ` [PATCH v13 06/11] app/test: differentiate a strerror on different OS Jie Zhou
2021-12-08  1:50                         ` [PATCH v13 07/11] app/test: remove two alarm_autotest cases Jie Zhou
2021-12-08  1:50                         ` [PATCH v13 08/11] app/test: resolve name collision Jie Zhou
2021-12-08  1:51                         ` [PATCH v13 09/11] app/test: add test stubs for not supported ones Jie Zhou
2021-12-08  1:51                         ` [PATCH v13 10/11] app/test: replace .sh script with .py script Jie Zhou
2021-12-08  1:51                         ` [PATCH v13 11/11] app/test: enable unit test on Windows Jie Zhou
2021-12-08 16:57                           ` Bruce Richardson
2021-12-08 18:19                             ` Jie Zhou
2021-12-08 18:23                               ` Bruce Richardson
2021-12-08 18:29                                 ` Jie Zhou
2021-12-08 18:59                         ` [PATCH v14 00/11] app/test: enable subset of tests " Jie Zhou
2021-12-08 18:59                           ` [PATCH v14 01/11] eal/windows: return ENOTSUP for not supported API Jie Zhou
2021-12-08 18:59                           ` [PATCH v14 02/11] app/test: remove POSIX-specific code Jie Zhou
2021-12-09 19:46                             ` Tyler Retzlaff
2021-12-08 18:59                           ` [PATCH v14 03/11] app/test: fix incorrect errno variable Jie Zhou
2021-12-08 18:59                           ` [PATCH v14 04/11] app/test: skip interrupt tests on Windows Jie Zhou
2021-12-09  7:49                             ` Jerin Jacob
2021-12-09 13:15                               ` Aaron Conole
2021-12-09 16:17                                 ` Bruce Richardson
2021-12-09 16:19                                   ` Richardson, Bruce
2021-12-09 16:39                                   ` Bruce Richardson
2021-12-10  9:23                                     ` Dmitry Kozlyuk
2021-12-10  9:30                                       ` Bruce Richardson
2022-01-17 18:37                                         ` Thomas Monjalon
2021-12-08 18:59                           ` [PATCH v14 05/11] app/test: skip two logs_autotest cases " Jie Zhou
2021-12-08 18:59                           ` [PATCH v14 06/11] app/test: differentiate a strerror on different OS Jie Zhou
2021-12-08 19:07                             ` Dmitry Kozlyuk
2021-12-08 18:59                           ` [PATCH v14 07/11] app/test: remove two alarm_autotest cases Jie Zhou
2021-12-08 18:59                           ` [PATCH v14 08/11] app/test: resolve name collision Jie Zhou
2021-12-08 19:45                             ` Dmitry Kozlyuk
2021-12-08 18:59                           ` [PATCH v14 09/11] app/test: add test stubs for not supported ones Jie Zhou
2021-12-09 19:47                             ` Tyler Retzlaff
2021-12-08 18:59                           ` [PATCH v14 10/11] app/test: replace .sh script with .py script Jie Zhou
2021-12-08 19:00                           ` [PATCH v14 11/11] app/test: enable unit test on Windows Jie Zhou
2021-12-09 19:49                           ` [PATCH v14 00/11] app/test: enable subset of tests " Tyler Retzlaff
2022-01-26  5:10                           ` [PATCH v15 " Jie Zhou
2022-01-26  5:10                             ` [PATCH v15 01/11] eal/windows: return ENOTSUP for not supported API Jie Zhou
2022-01-26  5:10                             ` [PATCH v15 02/11] app/test: remove POSIX-specific code Jie Zhou
2022-01-26  5:10                             ` [PATCH v15 03/11] app/test: fix incorrect errno variable Jie Zhou
2022-01-26  5:10                             ` [PATCH v15 04/11] app/test: skip interrupt tests on Windows Jie Zhou
2022-01-26  5:10                             ` [PATCH v15 05/11] app/test: skip two logs_autotest cases " Jie Zhou
2022-02-08  9:49                               ` Thomas Monjalon
2022-01-26  5:10                             ` [PATCH v15 06/11] app/test: differentiate a strerror on different OS Jie Zhou
2022-01-26  5:10                             ` [PATCH v15 07/11] app/test: remove two alarm_autotest cases Jie Zhou
2022-01-26  5:10                             ` [PATCH v15 08/11] app/test: resolve name collision Jie Zhou
2022-01-26  5:10                             ` [PATCH v15 09/11] app/test: skip tests that are not supported yet Jie Zhou
2022-02-08 10:58                               ` Thomas Monjalon
2022-02-08 11:39                               ` Thomas Monjalon
2022-01-26  5:10                             ` [PATCH v15 10/11] app/test: replace .sh script with .py script Jie Zhou
2022-02-03 11:15                               ` Thomas Monjalon
2022-02-03 18:54                                 ` Jie Zhou
2022-02-08 12:03                               ` Thomas Monjalon
2022-01-26  5:10                             ` [PATCH v15 11/11] app/test: enable unit test on Windows Jie Zhou
2022-02-08 13:20                             ` [PATCH v15 00/11] app/test: enable subset of tests " Thomas Monjalon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1630729155-24584-13-git-send-email-jizh@linux.microsoft.com \
    --to=jizh@linux.microsoft.com \
    --cc=aconole@redhat.com \
    --cc=dev@dpdk.org \
    --cc=dmitry.kozliuk@gmail.com \
    --cc=dmitrym@microsoft.com \
    --cc=navasile@linux.microsoft.com \
    --cc=pallavi.kadam@intel.com \
    --cc=roretzla@microsoft.com \
    --cc=talshn@nvidia.com \
    --cc=thomas@monjalon.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).