Page MenuHomeFreeBSD

ngie (Enji Cooper)
User

Projects

User Details

User Since
Aug 2 2014, 8:08 AM (553 w, 3 d)

Recent Activity

Today

ngie updated the diff for D49297: openssl: update ASM and version info for 3.0.16 import.

Update remaining version numbers I missed in prior revision.

Tue, Mar 11, 5:14 AM

Yesterday

ngie updated the diff for D49297: openssl: update ASM and version info for 3.0.16 import.

Update the remaining version numbers/strings

Mon, Mar 10, 7:53 PM

Sat, Mar 8

ngie added a reviewer for D49296: openssl: Import OpenSSL 3.0.16: gordon.
Sat, Mar 8, 6:47 PM
ngie updated the summary of D49298: openssl: Import OpenSSL 3.0.16.
Sat, Mar 8, 6:47 PM
ngie updated the summary of D49298: openssl: Import OpenSSL 3.0.16.
Sat, Mar 8, 6:46 PM
ngie abandoned D49295: openssl: Import OpenSSL 3.0.16.

Double-submitted as D49296.

Sat, Mar 8, 6:45 PM
ngie updated the summary of D49296: openssl: Import OpenSSL 3.0.16.
Sat, Mar 8, 6:44 PM
ngie updated the diff for D49298: openssl: Import OpenSSL 3.0.16.

Update with the changes in the tree instead of the vendor import commit

Sat, Mar 8, 6:43 PM
ngie updated the summary of D49298: openssl: Import OpenSSL 3.0.16.
Sat, Mar 8, 6:40 PM
ngie requested review of D49298: openssl: Import OpenSSL 3.0.16.
Sat, Mar 8, 6:39 PM
ngie updated the summary of D49297: openssl: update ASM and version info for 3.0.16 import.
Sat, Mar 8, 6:38 PM
ngie added a reviewer for D49297: openssl: update ASM and version info for 3.0.16 import: gordon.
Sat, Mar 8, 6:38 PM
ngie requested review of D49297: openssl: update ASM and version info for 3.0.16 import.
Sat, Mar 8, 6:37 PM
ngie requested review of D49296: openssl: Import OpenSSL 3.0.16.
Sat, Mar 8, 6:37 PM
ngie requested review of D49295: openssl: Import OpenSSL 3.0.16.
Sat, Mar 8, 6:36 PM

Thu, Mar 6

ngie committed rG1c34280346af: openssl: Import OpenSSL 3.0.16 (authored by ngie).
openssl: Import OpenSSL 3.0.16
Thu, Mar 6, 5:58 PM

Fri, Feb 21

ngie added a comment to D49039: kyua: Pass unprivileged user config prop to ATF using all known names.

This ideally should have a test added for it (along with the other ATF <-> Kyua variable parity improvements you made).

Fri, Feb 21, 1:35 AM
ngie accepted D49039: kyua: Pass unprivileged user config prop to ATF using all known names.
Fri, Feb 21, 1:34 AM

Tue, Feb 18

ngie added a comment to D49007: tests: Require python3 when using Scapy.

FWIW, I think the real bug might be that net/scapy requires python3 instead of being properly flavored using PY_FLAVORS, or the shebangs not being updated in the port to use the python3.10 instead of python3.

Tue, Feb 18, 4:38 PM
ngie added a comment to D49007: tests: Require python3 when using Scapy.
In D49007#1118213, @kp wrote:

It should replace existing lines where scapy is required. Please use your best judgment about whether or not it should be expressed this way.

I meant that to ask about what atf will do.
I.e. given this:

some_head()
{
    atf_set require.progs foo
    require_scapy
}

do we end up requiring python3 and scapy only, or foo as well?

Tue, Feb 18, 4:29 PM
ngie added a comment to D49007: tests: Require python3 when using Scapy.

One thing I might do instead of “requires_scapy” is something like “netpfil_required_progs” or set the requirements at the Kyuafile level. Again, this would dramatically reduce the amount of redundant shell code in the ATF testcase headers.

Tue, Feb 18, 2:11 AM
ngie accepted D49007: tests: Require python3 when using Scapy.
Tue, Feb 18, 2:07 AM
ngie added a comment to D49007: tests: Require python3 when using Scapy.

I wish the metaport stuff was handled like Debian sisters do with the alternatives application :/..

Tue, Feb 18, 2:07 AM
ngie added a comment to D49007: tests: Require python3 when using Scapy.
In D49007#1117997, @kp wrote:

What maintenance burden, @kp? I think it's a worthwhile change.

I'm probably overstating it a bit, yeah. I mostly want to keep the tests as simple and straightforward as possible, and having to list what should be a dependency of your already listed dependency isn't that.
Still, it's small enough that I'm not going to fight against it. Put me down as a "doesn't actually say no".

I've run into similar problems myself. I find it easy to have a system where something pulls in, say, lang/python311 but not lang/python3.

Why the python ports do this is probably off-topic here, and not something I'm going to be trying to fix.

Tue, Feb 18, 2:05 AM
ngie added a comment to D49007: tests: Require python3 when using Scapy.
In D49007#1118128, @kp wrote:

In the long, I can propose something like:

require_scapy()
{
    atf_set require.progs python3 scapy
}

In the common subroutine, and use require_scapy in the header, if the verbosity is the burden.

Interesting idea. Does that extend or replace previous atf_set require.progs lines? (You may not know, I certainly don't. Something we need to test if we go that way.)

Tue, Feb 18, 2:01 AM

Fri, Feb 14

ngie added a comment to D48087: kyua: Add "prepare" command.

Could requires be used instead of the term prepare? I think that would align the concept and the command more with what is being reported on.

Fri, Feb 14, 5:46 AM

Tue, Feb 11

ngie added inline comments to D48872: callbootd: Add man page, update Makefile to install man page, and update usage()..
Tue, Feb 11, 7:41 PM
ngie accepted D48917: tests: Add scapy as a required program.

The kyuafile solution would have involved less change, but I get the merits/demerits of going that route vs injecting the metadata in the _head() functions.

Tue, Feb 11, 4:22 PM

Mon, Feb 10

ngie added a comment to D48902: tests: Guard against testing without scapy.

Sidenote: you can require the program in the Kyuafile as well. That's generally the best way/least amount of code to ensure that the requirement is actually being met.

Mon, Feb 10, 7:38 PM
ngie added a comment to D48902: tests: Guard against testing without scapy.

What is the benefit of doing it this way vs the other way using require.progs?

Mon, Feb 10, 7:37 PM

Jan 30 2025

ngie accepted D48333: kyua: Support require.diskspace ATF metadata.
Jan 30 2025, 3:04 PM
ngie closed D48722: mca_log: add missing breaks when handling thresholds.
Jan 30 2025, 3:43 AM
ngie committed rG36d7d2044b93: mca_log: add missing breaks when handling thresholds (authored by ngie).
mca_log: add missing breaks when handling thresholds
Jan 30 2025, 3:43 AM

Jan 29 2025

ngie added reviewers for D48722: mca_log: add missing breaks when handling thresholds: jhb, kib.
Jan 29 2025, 9:27 PM
ngie requested review of D48722: mca_log: add missing breaks when handling thresholds.
Jan 29 2025, 9:27 PM

Dec 29 2024

ngie accepted D48190: kyuafile.5: ATF metadata mapping reference.

It honestly seems like this documentation should live in another place, e.g., a "test driver" [1] (kyua-atf-driver(4)?) manpage. Putting all of this information in a single manpage seems like it would really clutter up what's being explained here, and the more "test drivers" get bolted on to kyua, the more complex the documentation will become.

  1. I'm not sold on the name "test driver", but it's the best I can offer for the concept right now.

Agree, and it seems that we could go with a much more useful reference "just in place" for now and re-work it when it's time to cover a couple or more drivers. For now ATF & Kyua are very coupled from the perspective of our test suite, and it seems that lack of such quick reference does not allow test authors to squeeze maximum from both frameworks -- kyuafile.5 already states that ATF test case could override Kyua metadata, but it may be left non-obvious for a reader how exactly ATF naming is mapped. It could be guessed by comparing with atf-test-case.4 but the things like require.machine vs allowed_platforms can be tricky and need experimenting to make sure. Another issue is that Kyua could read Kyua-specific metadata from ATF side even if ATF knows nothing about it and it's not documented anyhow respectively, e.g. execenv and execenv_jail_params.

What do you think?

Dec 29 2024, 8:11 PM

Dec 26 2024

ngie added inline comments to D48195: tee: add some basic tests.
Dec 26 2024, 10:03 PM

Dec 25 2024

ngie added a comment to D48190: kyuafile.5: ATF metadata mapping reference.

It honestly seems like this documentation should live in another place, e.g., a "test driver" [1] (kyua-atf-driver(4)?) manpage. Putting all of this information in a single manpage seems like it would really clutter up what's being explained here, and the more "test drivers" get bolted on to kyua, the more complex the documentation will become.

Dec 25 2024, 6:54 PM
ngie accepted D48196: tee: minor cleanup.
Dec 25 2024, 6:42 PM

Dec 24 2024

ngie added a comment to D47671: kyua: Support is_exclusive metadata coming from an ATF test case.

Thanks! Please update the differential revision with the tests. Memory serves me correctly, CI on main might start failing if the tests aren't introduced.

Thank you for support. Kyua's tests are not configured yet on the FreeBSD side (in my todo with low priority). I would propose to keep this commit simple as it is right now to have less conflicts when it's time to merge from the vendor branch. I'm totally fine to add the test code change, but it can diverge more before the eventual merging. I guess we already have a lot of merge fun piled up there, I'm just worried about the person who is going to do the merge :).

Do you accept this approach?

Dec 24 2024, 8:18 AM

Dec 15 2024

ngie added a comment to D46653: kyua: Do not count skipped as passed in test cmd.

I think being added to the FreeBSD org is documented somewhere in the Committer's Guide. CC: @markj

I don't see any docs on that. Am I missing something?

In any case, I submitted https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=283127

Regarding the change itself, I have a hard time believing any serious project is parsing the result summary line and using that as input to something else. Do we know of any actual examples?

I kind of thing option 4 makes the most sense..

For the run of the FreeBSD regression suite that I just completed, option 4 gives:

Test cases: 9032 total, 211 skipped, 33 expected failures, 1 broken, 6 failed

Whereas kyua currently prints:

8814/9032 passed (1 broken, 6 failed, 211 skipped)
Dec 15 2024, 5:51 AM

Dec 14 2024

ngie added a comment to D47671: kyua: Support is_exclusive metadata coming from an ATF test case.

Thanks for reminding about testing. Please, find the PR here: https://github.com/freebsd/kyua/pull/245.

Dec 14 2024, 5:15 PM

Dec 13 2024

ngie accepted D47671: kyua: Support is_exclusive metadata coming from an ATF test case.

Please open a PR against freebsd/atf freebsd/kyua.
Also: this deserves a test (upstream).

Dec 13 2024, 8:37 PM

Dec 9 2024

ngie added a comment to D47977: strptime: Fix day-of-week calculation..

LGTM!

Dec 9 2024, 10:33 PM

Dec 4 2024

ngie added a comment to D46653: kyua: Do not count skipped as passed in test cmd.

Regarding the change proposed on the GitHub PR. I think it's better to merge the existing PR to keep FreeBSD src/contrib/kyua and the github/freebsd/kyua in sync with absolutely the same commit. And I would open a new PR for the change requested with a reference to the previous GitHub discussion/PR. What do you think is the best here from the organizational perspective?

I don't think it would be a good idea to merge the PR as-is. I'm trying to avoid violating POLA as much as humanly possible for 0.14 and taking a look at the output definitely violates POLA. There are enough Linux/MacOS things to deal with -- I'd rather not get more questions with a UX change like has been made on main...

I forgot to mention explicitly that I was thinking about "for the sake of easy merging between FreeBSD and github/Kyua". Now, as I get it, you worry about potential parsers of the last line of the output. Yes, I mentioned it during the discussion here, and it was like there are no objections to changing it. But, having it changed only for FreeBSD, we could step back and re-think the interface again, before GA.

I would like to list the options that quickly come to mind:

  1. Revert the change [1], keep UI as before.
  2. Revert the change, and probably add an extra line above the last one:
1 passed, 221 skipped, 0 broken, 0 failed, 222 total
222/222 passed (0 failed)
  1. Change the last line to:
1 passed, 221 skipped, 0 broken, 0 failed, 222 total
  1. Change the last line to repeat output of kyua report --verbose:
Test cases: 222 total, 221 skipped, 0 expected failures, 0 broken, 0 failed
  1. If we decide to astonish the users and change the last line then we could think of an extra value for exchange, e.g. make it provide some "smart" summarization to highlight the majority of the results. Perhaps I went too far, or maybe it's just a cup of great coffee talking here :). Please, do not take my wording as the best one:
All failed: 0 passed, 0 skipped, 1 broken, 221 failed, 222 total
Mostly failing: 90 passed, 0 skipped, 1 broken, 131 failed, 222 total
Some failures: 200 passed, 0 skipped, 2 broken, 20 failed, 222 total
All skipped: 0 passed, 222 skipped, 0 broken, 0 failed, 222 total
All passed: 222 passed, 0 skipped, 0 broken, 0 failed, 222 total

[1] Revert the change in FreeBSD main and stable/14 branches. Close the GitHub PR w/o merging.

Please let me know your vision/plan when you have one, and which steps are mine -- I'm ready to help with any option.

Dec 4 2024, 12:37 AM

Dec 2 2024

ngie added a comment to D46653: kyua: Do not count skipped as passed in test cmd.

For the record, stuff like this should really be committed to freebsd/kyua first, then backported. As of right now this change is not in what's intended to go in to 0.14 and in order to do the upgrade I would need to reapply this patch. I provided a ship-it earlier, but I was swayed by the comment in the PR about this change being confusing for naive results parsers: https://github.com/freebsd/kyua/pull/230 .

Yeah, ideally it should go through the GitHub repo. I tried to help with the synchronization by keeping this review and the GitHub PR in sync, the latter was expected to be "blindly" merged after all approvals on the Phab, unfortunately I do not have access to do that. Probably, we could think of some access for me? My vision is that I could merge the things like that PR after all discussions and approvals on the Phab side.

Dec 2 2024, 7:52 PM
ngie added a comment to D46653: kyua: Do not count skipped as passed in test cmd.

For the record, stuff like this should really be committed to freebsd/kyua first, then backported. As of right now this change is not in what's intended to go in to 0.14 and in order to do the upgrade I would need to reapply this patch. I provided a ship-it earlier, but I was swayed by the comment in the PR about this change being confusing for naive results parsers: https://github.com/freebsd/kyua/pull/230 .

Dec 2 2024, 6:44 PM
ngie added inline comments to D47826: Improve Test Coverage.
Dec 2 2024, 4:54 AM · Contributor Reviews (src), tests
ngie added a comment to D47826: Improve Test Coverage.

Mostly a style(9) nit: style(9) says C comments should be used (/* ... */)

Dec 2 2024, 4:53 AM · Contributor Reviews (src), tests
ngie added a comment to D47826: Improve Test Coverage.

Please rebase / reapply the new code changes. I reformatted the sources with clang-format in rG991bd461625a2c521d5be4fd6938deed57f60972 so your proposed changes will be highlighted instead of the current diff--which is addressing some existing style bugs in addition to your functional changes.

Dec 2 2024, 4:44 AM · Contributor Reviews (src), tests
ngie committed rG991bd461625a: lib/libsbuf/tests: reformat with `clang-format` (authored by ngie).
lib/libsbuf/tests: reformat with `clang-format`
Dec 2 2024, 4:42 AM
ngie added a comment to D47826: Improve Test Coverage.

Let me fix the formatting issues beforehand so the diff can be minimized to the functional changes...

Dec 2 2024, 4:38 AM · Contributor Reviews (src), tests

Dec 1 2024

ngie abandoned D47843: zfs: handle the `UF_NOUNLINK` chflags fflag.

Will go through openzfs first.

Dec 1 2024, 8:30 AM

Nov 30 2024

ngie added a comment to D47843: zfs: handle the `UF_NOUNLINK` chflags fflag.

As noted elsewhere, this unfortunately doesn't work for UID != 0: https://github.com/openzfs/zfs/pull/16820#issuecomment-2508540991 .

Nov 30 2024, 4:55 PM

Nov 29 2024

ngie updated the test plan for D47843: zfs: handle the `UF_NOUNLINK` chflags fflag.
Nov 29 2024, 7:15 PM
ngie updated the test plan for D47843: zfs: handle the `UF_NOUNLINK` chflags fflag.
Nov 29 2024, 7:14 PM
ngie retitled D47843: zfs: handle the `UF_NOUNLINK` chflags fflag from Handle the `UF_NOUNLINK` chflags fflag to zfs: handle the `UF_NOUNLINK` chflags fflag.
Nov 29 2024, 7:14 PM
ngie updated the test plan for D47843: zfs: handle the `UF_NOUNLINK` chflags fflag.
Nov 29 2024, 7:13 PM
ngie requested review of D47843: zfs: handle the `UF_NOUNLINK` chflags fflag.
Nov 29 2024, 7:12 PM
ngie added a comment to D47826: Improve Test Coverage.

Could you please run clang-format on this file to resolve any formatting-related issues?

Nov 29 2024, 1:28 AM · Contributor Reviews (src), tests

Oct 22 2024

ngie closed D47197: contrib/googletest: update from 1.14.0 to 1.15.2.
Oct 22 2024, 5:17 AM

Oct 20 2024

ngie accepted D46806: tests: kern: add some porch(1)-based tty tests.
Oct 20 2024, 4:11 PM
ngie added a comment to D40366: devel/apr1: support building DBM with BDB 1.85.

Install the dbm module for OPTIONS_SET+= BDB1 to unbreak uses of the dbm submodule.

Not used phabricator for a good while (last was before svn->git?)... WebUI doesn't want to update this rev.

I think I've cracked it, the plist breakage and all. Check [https://brnrd.eu/bsd/patch-devel_apr1-D40366]
Basically:

  1. --with-dbm hints for configure to speed up bdb detection
  2. Switch to PLIST_SUB with BERKELEYDB for all BDB versions

Database creation using httxt2dbm works with all 3 BDB versions:

❯ file test-*.dbm
test-base.dbm: Berkeley DB 1.85 (Hash, version 2, native byte-order)
test-db18.dbm: Berkeley DB (Hash, version 10, native byte-order)
test-db5.dbm:  Berkeley DB (Hash, version 9, native byte-order)

Would love to switch default to base, but that'll trip up people that have existing databases.

Oct 20 2024, 2:14 AM
ngie added a comment to D46806: tests: kern: add some porch(1)-based tty tests.

Could you please demo the test program (attach the kyua html report)?

Neat, I had no idea that kyua had a report-html command.

I uploaded the report here: https://people.freebsd.org/~kevans/porch-results/

archive.tar in that directory packages the directory for convenience. IMO it leaves a little bit to be desired, I would've kinda liked to see test names to attribute each result to, but maybe it does if they fail/skip.

Oct 20 2024, 2:13 AM
ngie accepted D46805: mk: add PLAIN_TESTS_PORCH support.

Macro lgtm:

Oct 20 2024, 2:11 AM
ngie committed rG5ca8c28cd8c7: contrib/googletest: update from 1.14.0 to 1.15.2 (authored by ngie).
contrib/googletest: update from 1.14.0 to 1.15.2
Oct 20 2024, 1:55 AM
ngie committed rG0077477f215c: tests/sys/fs/fusefs: include iomanip header (authored by ngie).
tests/sys/fs/fusefs: include iomanip header
Oct 20 2024, 1:51 AM
ngie closed D47194: tests/sys/fs/fusefs: include iomanip header.
Oct 20 2024, 1:51 AM
ngie updated the test plan for D47197: contrib/googletest: update from 1.14.0 to 1.15.2.
Oct 20 2024, 1:48 AM

Oct 19 2024

ngie added a reviewer for D47197: contrib/googletest: update from 1.14.0 to 1.15.2: tests.
Oct 19 2024, 4:51 PM
ngie retitled D47197: contrib/googletest: update from 1.14.0 to 1.15.2 from Merge commit '14f7077fed7d82046bdcbe347004132f08aba886' to contrib/googletest: update from 1.14.0 to 1.15.2.
Oct 19 2024, 4:50 PM
ngie requested review of D47197: contrib/googletest: update from 1.14.0 to 1.15.2.
Oct 19 2024, 4:47 PM
ngie updated the test plan for D47194: tests/sys/fs/fusefs: include iomanip header.
Oct 19 2024, 4:46 PM
ngie updated the diff for D40366: devel/apr1: support building DBM with BDB 1.85.

Install the dbm module for OPTIONS_SET+= BDB1 to unbreak uses of the dbm submodule.

Oct 19 2024, 4:39 PM
ngie added a comment to D40366: devel/apr1: support building DBM with BDB 1.85.

Oh neat, the plist is broken for all but OPTIONS_SET+= BDB.

Oct 19 2024, 4:30 PM
ngie added a comment to D40366: devel/apr1: support building DBM with BDB 1.85.

How did you verify that Berkeley DB support is working with these changes? httxt2dbm is failing for me.

Oct 19 2024, 4:20 PM
ngie retitled D47194: tests/sys/fs/fusefs: include iomanip header from Include iomanip header to tests/sys/fs/fusefs: include iomanip header.
Oct 19 2024, 3:38 PM
ngie updated the summary of D47194: tests/sys/fs/fusefs: include iomanip header.
Oct 19 2024, 3:37 PM
ngie added a reviewer for D47194: tests/sys/fs/fusefs: include iomanip header: asomers.
Oct 19 2024, 3:36 PM
ngie requested review of D47194: tests/sys/fs/fusefs: include iomanip header.
Oct 19 2024, 3:36 PM
ngie committed rG1e5e331b1dce: Correct mergeinfo from 1.14.0 import (authored by ngie).
Correct mergeinfo from 1.14.0 import
Oct 19 2024, 2:15 AM
ngie added a reverting change for rGa52d355b540f: Add 'origin/googletest/' from commit '8ef491440fcaec96f899d73e08873426c78583a4': rG92c5681cc347: Revert "Add 'origin/googletest/' from commit….
Oct 19 2024, 2:09 AM
ngie committed rG92c5681cc347: Revert "Add 'origin/googletest/' from commit… (authored by ngie).
Revert "Add 'origin/googletest/' from commit…
Oct 19 2024, 2:08 AM
ngie committed rGa52d355b540f: Add 'origin/googletest/' from commit '8ef491440fcaec96f899d73e08873426c78583a4' (authored by ngie).
Add 'origin/googletest/' from commit '8ef491440fcaec96f899d73e08873426c78583a4'
Oct 19 2024, 2:06 AM
ngie committed rGbcf81d7794a7: contrib/googletest: correct mergeinfo from 1.14.0 import (authored by ngie).
contrib/googletest: correct mergeinfo from 1.14.0 import
Oct 19 2024, 2:06 AM
ngie closed D46865: Update the expat version referenced in libbsdxml.3.
Oct 19 2024, 12:46 AM
ngie committed rGba23ab2168ff: Update the expat version referenced in libbsdxml.3 (authored by ngie).
Update the expat version referenced in libbsdxml.3
Oct 19 2024, 12:46 AM

Oct 5 2024

ngie added inline comments to D46805: mk: add PLAIN_TESTS_PORCH support.
Oct 5 2024, 3:10 PM
ngie added a comment to D46653: kyua: Do not count skipped as passed in test cmd.

Rework structure of test result types metadata. Fix tests.

Oct 5 2024, 4:09 AM
ngie accepted D46653: kyua: Do not count skipped as passed in test cmd.
Oct 5 2024, 4:09 AM
ngie commandeered D41698: devel/apr1: Update to 1.7.5.
Oct 5 2024, 3:57 AM
ngie accepted D46954: mlock_test: use mmap/munmap for unmapped pointer.
Oct 5 2024, 3:57 AM
ngie added inline comments to D46805: mk: add PLAIN_TESTS_PORCH support.
Oct 5 2024, 3:56 AM
ngie accepted D46955: libc: skip telldir_leak test.
Oct 5 2024, 3:50 AM
ngie updated the summary of D41698: devel/apr1: Update to 1.7.5.
Oct 5 2024, 3:49 AM
ngie updated the summary of D41698: devel/apr1: Update to 1.7.5.
Oct 5 2024, 3:48 AM
ngie retitled D41698: devel/apr1: Update to 1.7.5 from devel/apr1: Update to 1.7.4 to devel/apr1: Update to 1.7.5.
Oct 5 2024, 3:48 AM

Oct 4 2024

ngie updated the diff for D40366: devel/apr1: support building DBM with BDB 1.85.

Rebase on recent ports tree

Oct 4 2024, 4:28 AM
ngie updated the diff for D41698: devel/apr1: Update to 1.7.5.

Update the diff to the latest version: 1.7.5

Oct 4 2024, 4:28 AM

Oct 2 2024

ngie updated the summary of D46865: Update the expat version referenced in libbsdxml.3.
Oct 2 2024, 2:30 AM