<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/etc, branch releng/14.3</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=releng%2F14.3</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=releng%2F14.3'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2025-04-26T03:19:48Z</updated>
<entry>
<title>tee: add some basic tests</title>
<updated>2025-04-26T03:19:48Z</updated>
<author>
<name>Kyle Evans</name>
<email>kevans@FreeBSD.org</email>
</author>
<published>2025-04-20T16:34:50Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=00640ea3144cd6511aa05c16d20037b32e592dca'/>
<id>urn:sha1:00640ea3144cd6511aa05c16d20037b32e592dca</id>
<content type='text'>
The cases are ordered in such a way that we naturally progress through
the functionality, with the earliest failures perhaps shedding light on
any later failures.

sysutils/porch is used for one test if it's available, just to cleanly
check that SIGINT is being ignored properly.

Reviewed by:	des, emaste

(cherry picked from commit 85ff0b08ee699ff323404727998993275b4d2e2a)
</content>
</entry>
<entry>
<title>mtree: Add missing flua entry</title>
<updated>2025-02-17T20:09:00Z</updated>
<author>
<name>Jose Luis Duran</name>
<email>jlduran@FreeBSD.org</email>
</author>
<published>2025-02-17T20:08:46Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=3593da6a4e86d2e3fa6f352a9a52df5d796d6f22'/>
<id>urn:sha1:3593da6a4e86d2e3fa6f352a9a52df5d796d6f22</id>
<content type='text'>
This is a direct commit to the stable/14 and stable/13 branch.

Reviewed by:	emaste
Approved by:	emaste (mentor)
Fixes:  bceabe277e12 ("flua: initial support for "require" in the base system")
Differential Revision:	https://reviews.freebsd.org/D49011
</content>
</entry>
<entry>
<title>mtree: Add missing ossl-modules entry</title>
<updated>2025-02-12T01:37:27Z</updated>
<author>
<name>Jose Luis Duran</name>
<email>jlduran@FreeBSD.org</email>
</author>
<published>2025-02-05T19:51:09Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=f7393d28927521b175818bc0d1650abcf1804eab'/>
<id>urn:sha1:f7393d28927521b175818bc0d1650abcf1804eab</id>
<content type='text'>
Reviewed by:	imp
Approved by:	emaste (mentor)
Fixes:	b077aed33b7b ("Merge OpenSSL 3.0.9")
MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D48837

(cherry picked from commit 16197cf147e98c2ffc0250f8b71f0fa485c03ecc)
</content>
</entry>
<entry>
<title>mtree: Add missing libxo/encoder path</title>
<updated>2025-02-12T01:37:09Z</updated>
<author>
<name>Jose Luis Duran</name>
<email>jlduran@FreeBSD.org</email>
</author>
<published>2025-02-05T19:50:21Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=abada75ea8c8fca18b769241d38d97e31df44c74'/>
<id>urn:sha1:abada75ea8c8fca18b769241d38d97e31df44c74</id>
<content type='text'>
Reviewed by:	imp
Approved by:	emaste (mentor)
Fixes:	d1a0d267b78b ("Upgrade libxo to 0.4.5.")
MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D48836

(cherry picked from commit d10deaea12adb73a698d907a148f081c402d5dd6)
</content>
</entry>
<entry>
<title>mtree: TESTSBASE directory always starts with a /</title>
<updated>2025-02-01T03:32:32Z</updated>
<author>
<name>Jose Luis Duran</name>
<email>jlduran@FreeBSD.org</email>
</author>
<published>2025-01-24T23:10:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=81a8f67a5b55905320233cbfdae321173a92a172'/>
<id>urn:sha1:81a8f67a5b55905320233cbfdae321173a92a172</id>
<content type='text'>
Remove the extra forward slash ("/"), otherwise the mtree specification
file will have the double slash and will not be parsed by makefs when
attempting to build NanoBSD with NO_ROOT privileges.

Fixes:	07670b30fa43 ("Create /usr/tests *.debug file directory hierarchy")
Reviewed by:	emaste
Approved by:	emaste (mentor)
Differential Revision:	https://reviews.freebsd.org/D47722

(cherry picked from commit 01ff67f4bdf5959a719a6511a855f6a60c0e3a93)
</content>
</entry>
<entry>
<title>strptime: Fix day-of-week calculation.</title>
<updated>2024-12-16T10:37:08Z</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>2024-12-09T12:37:45Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=259dcedc4ade538c35100d364e5cfe30b89c9a95'/>
<id>urn:sha1:259dcedc4ade538c35100d364e5cfe30b89c9a95</id>
<content type='text'>
The day-of-week calculation used the raw year value without adjusting
for TM_YEAR_BASE, so it was off by one for 300 years out of every 400;
it just happened to be correct for 1901 through 2000.  It also used a
loop where a simple addition would have sufficed.

While here, simplify our version of Gauss's algorithm, and document
that we assume the Gregorian calendar.

MFC after:	1 week
PR:		282916
Reviewed by:	imp, allanjude, philip
Differential Revision:	https://reviews.freebsd.org/D47977

(cherry picked from commit 4285e024baa80f81d13cdcc016fdf0721fe57862)
</content>
</entry>
<entry>
<title>savecore: Add a livedump regression test</title>
<updated>2024-12-13T01:34:14Z</updated>
<author>
<name>Mark Johnston</name>
<email>markj@FreeBSD.org</email>
</author>
<published>2024-11-25T21:12:12Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=fea53bf43f85a6b42245fe5f1330eea27cf6f0db'/>
<id>urn:sha1:fea53bf43f85a6b42245fe5f1330eea27cf6f0db</id>
<content type='text'>
MFC after:	2 weeks
Differential Revision:	https://reviews.freebsd.org/D47715

(cherry picked from commit 73465bb47bb37e6efdc61827e260a070dda0a0dc)
</content>
</entry>
<entry>
<title>mtree: Add missing entries in BSD.tests.dist</title>
<updated>2024-12-04T01:07:20Z</updated>
<author>
<name>Jose Luis Duran</name>
<email>jlduran@FreeBSD.org</email>
</author>
<published>2024-11-27T16:06:06Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=ea4863825ee277bce8b889a9a9223ce21a6d5eea'/>
<id>urn:sha1:ea4863825ee277bce8b889a9a9223ce21a6d5eea</id>
<content type='text'>
Reviewed by:	emaste, christos
Approved by:	emaste (mentor)
Fixes:	95eb4b873b6a ("sound tests: Add sndstat nvlist ATF test")
MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D47724

(cherry picked from commit f08dfd819bf73a584bf90da268242a7ed483dc32)
</content>
</entry>
<entry>
<title>mtree: Fix BSD.tests.dist sorting</title>
<updated>2024-12-04T01:06:40Z</updated>
<author>
<name>Jose Luis Duran</name>
<email>jlduran@FreeBSD.org</email>
</author>
<published>2024-11-24T01:49:16Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=ae50b6ba682adf434fec3870ed6d5e4dd19e5163'/>
<id>urn:sha1:ae50b6ba682adf434fec3870ed6d5e4dd19e5163</id>
<content type='text'>
Reviewed by:	imp
Approved by:	emaste (mentor)
Fixes:	60d717baf214 ("ctl: add some ATF tests for READ BUFFER")
MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D47719

(cherry picked from commit 4b8e65d12fd7c06c0f670bdb11815971c3bebfed)
</content>
</entry>
<entry>
<title>Merge llvm-project main llvmorg-19-init-18630-gf2ccf80136a0</title>
<updated>2024-12-01T11:16:52Z</updated>
<author>
<name>Dimitry Andric</name>
<email>dim@FreeBSD.org</email>
</author>
<published>2024-07-27T23:34:35Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=0eb20fbda7a3b7e431f5592716af9bdcbe39bf0a'/>
<id>urn:sha1:0eb20fbda7a3b7e431f5592716af9bdcbe39bf0a</id>
<content type='text'>
This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and
openmp to llvm-project main llvmorg-19-init-18630-gf2ccf80136a0, the
last commit before the upstream release/19.x branch was created.

PR:		280562
MFC after:	1 month

(cherry picked from commit 0fca6ea1d4eea4c934cfff25ac9ee8ad6fe95583)
</content>
</entry>
</feed>
