diff mbox series

[meta-oe,01/23] bats: upgrade 1.12.0 -> 1.13.0

Message ID 20251111075517.1650-1-wangmy@fujitsu.com
State Under Review
Headers show
Series [meta-oe,01/23] bats: upgrade 1.12.0 -> 1.13.0 | expand

Commit Message

Mingyu Wang (Fujitsu) Nov. 11, 2025, 7:54 a.m. UTC
From: Wang Mingyu <wangmy@fujitsu.com>

Added
========
- use the syntax parser directive to declare the Dockerfile syntax version
- Negative test filtering via --negative-filter - tests matching the filter are excluded
- fail-fast flag --abort to stop test suite execution on first failure

Fixed:
========
- unset output, stderr, lines, stderr_lines at the start of run to avoid crosstalk
- between successive invocations
- junit:
  XML escape fully removes ANSI sequences, e.g. color codes, cursor movements
  fix retried tests being listed multiple times
  fix crash when setup_suite fails
- remove deprecated windows runner
- renamed docker-compose.yml to compose.yaml
- bats_test_function: don't require --tags to be sorted
- fix BATS_TEST_TIMEOUT
- not stopping processes under run
- prolonging skipped tests

Documentation:
===============
- moved 3rd-party libraries list into wiki

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-test/bats/{bats_1.12.0.bb => bats_1.13.0.bb}    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-test/bats/{bats_1.12.0.bb => bats_1.13.0.bb} (91%)
diff mbox series

Patch

diff --git a/meta-oe/recipes-test/bats/bats_1.12.0.bb b/meta-oe/recipes-test/bats/bats_1.13.0.bb
similarity index 91%
rename from meta-oe/recipes-test/bats/bats_1.12.0.bb
rename to meta-oe/recipes-test/bats/bats_1.13.0.bb
index 14a234c866..3545295a3c 100644
--- a/meta-oe/recipes-test/bats/bats_1.12.0.bb
+++ b/meta-oe/recipes-test/bats/bats_1.13.0.bb
@@ -6,11 +6,11 @@  LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.md;md5=2970203aedf9e829edb96a137a4fe81b"
 
 SRC_URI = "\
-  git://github.com/bats-core/bats-core.git;branch=master;protocol=https \
+  git://github.com/bats-core/bats-core.git;branch=master;protocol=https;tag=v${PV} \
   "
 
-# v1.12.0
-SRCREV = "713504bc0224a19b3d7c7958c18dc07f64f54b44"
+# v1.13.0
+SRCREV = "3bca150ec86275d6d9d5a4fd7d48ab8b6c6f3d87"
 
 
 # Numerous scripts assume ${baselib} == lib, which is not true.