The test with jemalloc and clang is redundant as we are already testing jemalloc with gcc. Replace it with system-test-userspace which runs system tests over userspace OvS datapath.
Tested-by: Simon Horman <[email protected]> Signed-off-by: Ales Musil <[email protected]> --- v3: rebase on top of current main. v4: Rebase on top of current main. --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0f8d9d193..90dc8a6f1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -47,9 +47,9 @@ jobs: - { compiler: gcc, testsuite: test, libs: -ljemalloc, test_range: "-500" } - { compiler: gcc, testsuite: test, libs: -ljemalloc, test_range: "501-1000" } - { compiler: gcc, testsuite: test, libs: -ljemalloc, test_range: "1001-" } - - { compiler: clang, testsuite: test, libs: -ljemalloc, test_range: "-500" } - - { compiler: clang, testsuite: test, libs: -ljemalloc, test_range: "501-1000" } - - { compiler: clang, testsuite: test, libs: -ljemalloc, test_range: "1001-" } + - { compiler: gcc, testsuite: system-test-userspace, test_range: "-100" } + - { compiler: gcc, testsuite: system-test-userspace, test_range: "101-200" } + - { compiler: gcc, testsuite: system-test-userspace, test_range: "201-" } - { compiler: gcc, testsuite: system-test, test_range: "-100" } - { compiler: gcc, testsuite: system-test, test_range: "101-200" } - { compiler: gcc, testsuite: system-test, test_range: "201-" } -- 2.39.2 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
