From fc6377f7f949ac23d38fb58c2c4a2f27bba73b1f Mon Sep 17 00:00:00 2001 From: Petr Vorel Date: Tue, 3 Feb 2026 23:44:13 +0100 Subject: [PATCH] package/ltp-testsuite: bump version to 20260130 For changelog, see [1]. Also, kirk removed update the "--framework ltp" option in [1] and "--sut host" in [2]. This commit updates the test_ltp_testsuite runtime test to remove those options to reflect those changes. [1] https://github.com/linux-test-project/ltp/releases/tag/20260130 [2] https://github.com/linux-test-project/kirk/commit/818abbb90e14454e94675da3757ff7fdafaa26af [3] https://github.com/linux-test-project/kirk/commit/d2761ce865405c4abcdd5e3919ca96721fb6178f Signed-off-by: Petr Vorel [Julien: - add link to changelog - update test_ltp_testsuite.py ] Signed-off-by: Julien Olivain --- package/ltp-testsuite/ltp-testsuite.hash | 4 ++-- package/ltp-testsuite/ltp-testsuite.mk | 2 +- support/testing/tests/package/test_ltp_testsuite.py | 2 -- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/package/ltp-testsuite/ltp-testsuite.hash b/package/ltp-testsuite/ltp-testsuite.hash index b96e1f46fa..e1861ae4e4 100644 --- a/package/ltp-testsuite/ltp-testsuite.hash +++ b/package/ltp-testsuite/ltp-testsuite.hash @@ -1,4 +1,4 @@ -# From: https://github.com/linux-test-project/ltp/releases/download/20250930/ltp-full-20250930.tar.xz.sha256 -sha256 048fa4d69ddbe8a94aa15da9bdc85713ab07a0abbc3de2b8bdd9757644aef1e4 ltp-full-20250930.tar.xz +# From: https://github.com/linux-test-project/ltp/releases/download/20260130/ltp-full-20260130.tar.xz.sha256 +sha256 5effc9d3eb3f5cd45d47e8ac3d78f59cb8f3f73c8598a2f182ef5b40ddfff311 ltp-full-20260130.tar.xz # Locally computed sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING diff --git a/package/ltp-testsuite/ltp-testsuite.mk b/package/ltp-testsuite/ltp-testsuite.mk index 12db8f2d3b..2e4767b1a5 100644 --- a/package/ltp-testsuite/ltp-testsuite.mk +++ b/package/ltp-testsuite/ltp-testsuite.mk @@ -4,7 +4,7 @@ # ################################################################################ -LTP_TESTSUITE_VERSION = 20250930 +LTP_TESTSUITE_VERSION = 20260130 LTP_TESTSUITE_SOURCE = ltp-full-$(LTP_TESTSUITE_VERSION).tar.xz LTP_TESTSUITE_SITE = https://github.com/linux-test-project/ltp/releases/download/$(LTP_TESTSUITE_VERSION) diff --git a/support/testing/tests/package/test_ltp_testsuite.py b/support/testing/tests/package/test_ltp_testsuite.py index 6ff59b9700..58e3af19ed 100644 --- a/support/testing/tests/package/test_ltp_testsuite.py +++ b/support/testing/tests/package/test_ltp_testsuite.py @@ -30,8 +30,6 @@ class TestLtpTestsuite(infra.basetest.BRTest): # fast execution. See "kirk --help" for option details. cmd = f"LTPROOT={ltp_root}" cmd += f" {ltp_root}/kirk" - cmd += " --sut host" - cmd += " --framework ltp" cmd += " --run-suite syscalls" cmd += " --run-pattern '^read0[0-9]*'" cmd += f" --json-report {report_file}"