From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1AD56A0C4B; Tue, 23 Nov 2021 03:59:58 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E4B9E40040; Tue, 23 Nov 2021 03:59:57 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 1FECA4003C for ; Tue, 23 Nov 2021 03:59:55 +0100 (CET) X-IronPort-AV: E=McAfee;i="6200,9189,10176"; a="222159569" X-IronPort-AV: E=Sophos;i="5.87,256,1631602800"; d="scan'208";a="222159569" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Nov 2021 18:59:55 -0800 X-IronPort-AV: E=Sophos;i="5.87,256,1631602800"; d="scan'208";a="509228980" Received: from unknown (HELO dpdk.lan) ([10.240.183.77]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Nov 2021 18:59:53 -0800 From: Lewei Yang To: dts@dpdk.org Cc: Lewei Yang Subject: [dts][PATCH V2] tests/unit_tests_eal:remove strict timing requirements some tests Date: Tue, 23 Nov 2021 11:00:42 +0000 Message-Id: <20211123110042.127527-1-leweix.yang@intel.com> X-Mailer: git-send-email 2.33.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org According to dpdk commit ee00af60170b("test: remove strict timing requirements some tests"), Remove the timing related tests from the test suites Signed-off-by: Lewei Yang --- test_plans/unit_tests_eal_test_plan.rst | 24 ------------------------ tests/TestSuite_unit_tests_eal.py | 21 --------------------- 2 files changed, 45 deletions(-) diff --git a/test_plans/unit_tests_eal_test_plan.rst b/test_plans/unit_tests_eal_test_plan.rst index 4cb9d6b9..3b871513 100644 --- a/test_plans/unit_tests_eal_test_plan.rst +++ b/test_plans/unit_tests_eal_test_plan.rst @@ -189,15 +189,6 @@ Byteorder functions Check the result of optimized byte swap functions for each size (16-, 32- and 64-bit). -Cycles Test -=========== - -- Loop N times and check that the timer always increments and - never decrements during this loop. - -- Wait one second using rte_usleep() and check that the increment - of cycles is correct with regard to the frequency of the timer. - Logs ==== @@ -244,21 +235,6 @@ Debug test - Call rte_dump_stack() and rte_dump_registers(). -Alarm -===== - -- Check that the callback for the alarm can to be called. -- Check that it is not possible to set alarm with invalid time value. -- Check that it is not possible to set alarm without a callback. -- Check that it is not possible to cancel alarm without a callback pointer. -- Check that multiple callbacks for the alarm can be called. -- Check that the number of removed and unremoved alarms are correct. -- Check that no callback is called if all alarm removed. -- Check that it is not possible to cancel an alarm within the callback itself. -- Check that the callback which is the head of all is able to be removed. -- Check that all alarms for the same callback can be canceled. - - CPU flags ========= diff --git a/tests/TestSuite_unit_tests_eal.py b/tests/TestSuite_unit_tests_eal.py index 8096183c..5a3d3922 100644 --- a/tests/TestSuite_unit_tests_eal.py +++ b/tests/TestSuite_unit_tests_eal.py @@ -316,16 +316,6 @@ class TestUnitTestsEal(TestCase): self.dut.send_expect("quit", "# ") self.verify("Test OK" in out, "Test failed") - def test_cycles(self): - """ - Run cycles autotest. - """ - - self.dut.send_expect(self.test_app_cmdline, "R.*T.*E.*>.*>", self.start_test_time) - out = self.dut.send_expect("cycles_autotest", "RTE>>", self.run_cmd_time) - self.dut.send_expect("quit", "# ") - self.verify("Test OK" in out, "Test failed") - def test_logs(self): """ Run logs autotest. @@ -369,17 +359,6 @@ class TestUnitTestsEal(TestCase): self.dut.bind_interfaces_linux(driver=self.drivername) self.verify("Test OK" in out, "Test failed") - def test_alarm(self): - """ - Run alarm autotest. - """ - - self.verify(self.env == "linuxapp", "Alarm only supported in linux env") - self.dut.send_expect(self.test_app_cmdline, "R.*T.*E.*>.*>", self.start_test_time) - out = self.dut.send_expect("alarm_autotest", "RTE>>", self.run_cmd_time) - self.dut.send_expect("quit", "# ") - self.verify("Test OK" in out, "Test failed") - def test_cpuflags(self): """ Run CPU flags autotest. -- 2.33.1