test: drop reference to removed tests

Message ID 20220613073700.3222164-1-david.marchand@redhat.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series test: drop reference to removed tests |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/iol-mellanox-Performance success Performance Testing PASS
ci/iol-intel-Performance success Performance Testing PASS
ci/iol-intel-Functional success Functional Testing PASS
ci/github-robot: build fail github build: failed
ci/iol-aarch64-unit-testing success Testing PASS
ci/iol-x86_64-compile-testing success Testing PASS
ci/iol-aarch64-compile-testing success Testing PASS
ci/iol-x86_64-unit-testing success Testing PASS
ci/iol-abi-testing success Testing PASS
ci/Intel-compilation success Compilation OK
ci/intel-Testing success Testing PASS

Commit Message

David Marchand June 13, 2022, 7:37 a.m. UTC
  cycles_autotest and delay_us_sleep_autotest tests were removed in the
commit ee00af60170b ("test: remove strict timing requirements some tests")
and were wrongly reintroduced later.

Bugzilla ID: 1021
Fixes: 74822233bdc2 ("test: create a list of extra tests")
Cc: stable@dpdk.org

Signed-off-by: David Marchand <david.marchand@redhat.com>
---
 app/test/meson.build | 2 --
 1 file changed, 2 deletions(-)
  

Comments

Thomas Monjalon June 21, 2022, 4:39 p.m. UTC | #1
13/06/2022 09:37, David Marchand:
> cycles_autotest and delay_us_sleep_autotest tests were removed in the
> commit ee00af60170b ("test: remove strict timing requirements some tests")
> and were wrongly reintroduced later.
> 
> Bugzilla ID: 1021
> Fixes: 74822233bdc2 ("test: create a list of extra tests")
> Cc: stable@dpdk.org
> 
> Signed-off-by: David Marchand <david.marchand@redhat.com>

Applied, thanks.
  

Patch

diff --git a/app/test/meson.build b/app/test/meson.build
index 7fe261cae8..a86382524e 100644
--- a/app/test/meson.build
+++ b/app/test/meson.build
@@ -250,8 +250,6 @@  fast_tests = [
 # Tests known to have issues or which don't belong in other tests lists.
 extra_test_names = [
         'alarm_autotest', # ee00af60170b ("test: remove strict timing requirements some tests")
-        'cycles_autotest', # ee00af60170b ("test: remove strict timing requirements some tests")
-        'delay_us_sleep_autotest', # ee00af60170b ("test: remove strict timing requirements some tests")
         'red_autotest', # https://bugs.dpdk.org/show_bug.cgi?id=826
 ]