<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-openembedded.git/meta-oe/recipes-test, branch kirkstone-next</title>
<subtitle>Mirror of git.openembedded.org/meta-openembedded</subtitle>
<id>https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=kirkstone-next</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=kirkstone-next'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/'/>
<updated>2024-04-28T17:10:23+00:00</updated>
<entry>
<title>bats: fix bats-format-pretty report error when multilib enabled</title>
<updated>2024-04-28T17:10:23+00:00</updated>
<author>
<name>Xiangyu Chen</name>
<email>xiangyu.chen@windriver.com</email>
</author>
<published>2024-04-15T05:59:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=bd7b2ebf21b4b9e382d05b685aba18a08b224249'/>
<id>urn:sha1:bd7b2ebf21b4b9e382d05b685aba18a08b224249</id>
<content type='text'>
bat-format-pretty hardcoded the lib folder that cause it reports
missing formatter.bash error when multilib is enabled.

Signed-off-by: Xiangyu Chen &lt;xiangyu.chen@windriver.com&gt;
Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
</content>
</entry>
<entry>
<title>Googletest: Adapt googletest 1.11.0 with gcc11</title>
<updated>2023-06-19T11:19:41+00:00</updated>
<author>
<name>sana kazi</name>
<email>sanakazisk19@gmail.com</email>
</author>
<published>2023-06-19T08:05:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=8fb1e24fcc5fdaaafbfa03852c7b8bc3e995fe62'/>
<id>urn:sha1:8fb1e24fcc5fdaaafbfa03852c7b8bc3e995fe62</id>
<content type='text'>
Backport a commit to fix the build error when using gcc11.
[commit]
https://github.com/google/googletest/pull/3993/commits/096014a45dc38dff993f5b7bb28a258d8323344b
[error]
/usr/include/gtest/gtest-printers.h:291:36: error: no matching function for call to
‘testing::internal::internal_stream_operator_without_lexical_name_lookup::StreamPrinter::PrintValue(const A::B::C::D::E::F::G&amp;, std::nullptr_t)’
291 |     T, decltype(Printer::PrintValue(std::declval&lt;const T&amp;&gt;(), nullptr)),
    |                 ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/gtest/gtest-printers.h:214:15: note: candidate: ‘template&lt;class T, class, class&gt; static void testing::internal::internal_stream_operator_without_lexical_name_lookup::StreamPrinter::PrintValue(const T&amp;, std::ostream*)’
  214 |   static void PrintValue(const T&amp; value, ::std::ostream* os) {
      |               ^~~~~~~~~~

Signed-off-by: Peng Cui &lt;peng.ca.cui@bmw.com&gt;
Signed-off-by: Sana Kazi &lt;sana.kazi@kpit.com&gt;
Signed-off-by: Sana Kazi &lt;sanakazisk19@gmail.com&gt;
Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
</content>
</entry>
<entry>
<title>bats: upgrade 1.6.0 -&gt; 1.6.1</title>
<updated>2022-05-23T14:39:02+00:00</updated>
<author>
<name>Diego Sueiro</name>
<email>diego.sueiro@arm.com</email>
</author>
<published>2022-05-16T12:28:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=0b78362654262145415df8211052442823b9ec9b'/>
<id>urn:sha1:0b78362654262145415df8211052442823b9ec9b</id>
<content type='text'>
The 1.6.1 incorporates the
0001-Fix-status-in-teardown-overriding-exit-code.patch backport patch.

Changelog:
==========

Fixed:
------
prevent teardown, teardown_file, and teardown_suite from overriding bats'
exit code by setting $status (e.g. via calling run) (#581, #575)
CRITICAL: this can return exit code 0 despite failed tests, thus preventing
your CI from reporting test failures! The regression happened in version 1.6.0.

Documentation:
--------------
corrected invalid documentation of run -N (had =N instead) (#579)
CRITICAL: using the incorrect form can lead to silent errors. See issue #578
for more details and how to find out if your tests are affected.

Signed-off-by: Diego Sueiro &lt;diego.sueiro@arm.com&gt;
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
(cherry picked from commit 72fbb8379fc47ec77cdcb1c15e992d99d205ced2)
Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
</content>
</entry>
<entry>
<title>bats: Add patch to fix false-negatives caused by teardown code</title>
<updated>2022-05-23T14:37:55+00:00</updated>
<author>
<name>Richard Neill</name>
<email>richard.neill@arm.com</email>
</author>
<published>2022-05-12T12:44:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=797684d24fd90a1cd713acd64b8c495d95df5933'/>
<id>urn:sha1:797684d24fd90a1cd713acd64b8c495d95df5933</id>
<content type='text'>
BATS v1.6.0 has a regression which can result in test case failures being
ignored when teardown code executes successfully. This patch applies the
accepted bug-fix until the next BATS release.

Also, fix a comment that wasn't updated during the BATS upgrade, to match the
correct release (v1.6.0) associated with the SRCREV.

Signed-off-by: Richard Neill &lt;richard.neill@arm.com&gt;
Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
</content>
</entry>
<entry>
<title>googletests: Update SRC_URI to 9e71237 to move closer to lastest version</title>
<updated>2022-04-11T14:46:51+00:00</updated>
<author>
<name>Willy Tu</name>
<email>wltu@google.com</email>
</author>
<published>2022-04-10T00:26:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=cf80085c0655c23f505c328df3f6017d55ff52ec'/>
<id>urn:sha1:cf80085c0655c23f505c328df3f6017d55ff52ec</id>
<content type='text'>
Picked https://github.com/google/googletest/commit/9e712372214d75bb30ec2847a44bf124d48096f3
as the latest Verified commit and move closer to the HEAD of
googletests. Googletests does not make releases that often and some good
to have features are missing.

Signed-off-by: Willy Tu &lt;wltu@google.com&gt;
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>fwts: Do not use --as-needed on ppc64</title>
<updated>2022-03-14T16:44:26+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2022-03-14T16:42:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=33841aec58431e7ef436f58c7a3a006eacc49340'/>
<id>urn:sha1:33841aec58431e7ef436f58c7a3a006eacc49340</id>
<content type='text'>
This is not seen on non ppc64 hosts

Fixes
build/src/lib/src/.libs/libfwts.so: undefined reference to `fwts_acpica_sem_count_get'

Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>fwts: Upgrade to 22.01.00</title>
<updated>2022-03-14T16:16:05+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2022-03-14T03:51:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=268e844999c417010baecdf5b42c7b32e2f4b658'/>
<id>urn:sha1:268e844999c417010baecdf5b42c7b32e2f4b658</id>
<content type='text'>
Drop upstreamed poll.h patch
Refresh rest of patches

Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>recipes: Update LICENSE variable to use SPDX license identifiers</title>
<updated>2022-03-05T01:41:45+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2022-03-04T08:44:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=14c7d8a0d7cb843ac8b0d25cc4170fa640ac1295'/>
<id>urn:sha1:14c7d8a0d7cb843ac8b0d25cc4170fa640ac1295</id>
<content type='text'>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>cukinia: upgrade 0.5.1 -&gt; 0.6.0</title>
<updated>2022-03-01T17:13:42+00:00</updated>
<author>
<name>Wang Mingyu</name>
<email>wangmy@fujitsu.com</email>
</author>
<published>2022-02-28T14:11:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=af6d2263408657896317410c5e50ff986b6fd148'/>
<id>urn:sha1:af6d2263408657896317410c5e50ff986b6fd148</id>
<content type='text'>
Signed-off-by: Wang Mingyu &lt;wangmy@fujitsu.com&gt;
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>bats: upgrade 1.5.0 -&gt; 1.6.0</title>
<updated>2022-03-01T17:13:42+00:00</updated>
<author>
<name>Wang Mingyu</name>
<email>wangmy@fujitsu.com</email>
</author>
<published>2022-02-28T14:11:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=76d8e526eae9fc9ab14ff5804ae0091230a8b39e'/>
<id>urn:sha1:76d8e526eae9fc9ab14ff5804ae0091230a8b39e</id>
<content type='text'>
Changelog:
=========
Added:
-----
new flag --code-quote-style (and $BATS_CODE_QUOTE_STYLE) to customize
quotes around code blocks in error output (#506)
an example/regression test for running background tasks without blocking the
test run (#525, #535)
bats_load_library for loading libraries from the search path
$BATS_LIB_PATH (#548)

Fixed:
-----
improved error trace for some broken cases (#279)
removed leftover debug file /tmp/latch in selftest suite
(single use latch) (#516)
fix recurring errors on CTRL+C tests with NPM on Windows in selftest suite (#516)
fixed leaking of local variables from debug trap (#520)
don't mark FD3 output from teardown_file as &lt;failure&gt; in junit output (#532)
fix unbound variable error with Bash pre 4.4 (#550)

Documentation:
--------------
remove links to defunct freenode IRC channel (#515)
improved grammar (#534)
fixed link to TAP spec (#537)

Signed-off-by: Wang Mingyu &lt;wangmy@fujitsu.com&gt;
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
</feed>
