- Queries
- All Stories
- Search
- Advanced Search
- Transactions
- Transaction Logs
Advanced Search
Tue, Feb 4
Wed, Jan 29
Sat, Jan 25
Jan 21 2025
Jan 11 2025
Jan 9 2025
Jan 7 2025
Jan 6 2025
Dec 8 2024
Dec 4 2024
Nov 15 2024
Nov 7 2024
Oct 28 2024
Oct 22 2024
Oct 21 2024
Oct 20 2024
Oct 15 2024
Oct 10 2024
Oct 8 2024
Oct 2 2024
In D44548#1068628, @ngie wrote:Specifying this in the Makefile is significantly less code than doing it in the atf tests:
TEST_METADATA.lorder_test+= required_programs="ar cc lorder nm"This metadata ends up in the Kyuafile.
Oct 1 2024
Update test to latest sync, and add nm in requiere list too.
New version using requiered_progs.
But anyway which port should insall all the missing sg_* binaries ? I don’t find instruction about them.
Because right now they are ignored:
https://ci.freebsd.org/job/FreeBSD-main-amd64-test/lastCompletedBuild/testReport/sys.cam.ctl/prevent/allow/
Sep 30 2024
In D46853#1068383, @imp wrote:I have a slight preference for require.prog since the counts are better aligne. Also, that lets people install the dist tests on their maybe customized systems for QA. I'll likely need to skip these for bsd-user too, but that's also beyond the scope. But I'm not insisting because this solves the immediate need
Sep 29 2024
Sep 24 2024
Sep 18 2024
Aug 30 2024
Aug 26 2024
Aug 15 2024
Jun 28 2024
Jun 21 2024
Jun 17 2024
May 30 2024
Thanks I will commit it
May 27 2024
May 24 2024
May 18 2024
May 17 2024
May 16 2024
May 8 2024
Apr 2 2024
In D44548#1016031, @des wrote:I think D44558 is a better approach.
Mar 29 2024
In D44548#1015876, @des wrote:Why are you testing lorder, which is part of the toolchain, on a system without a toolchain?
Mar 28 2024
Mar 26 2024
Mar 11 2024
On 2 identical servers (Intel Xeon CPU E5-2697A v4 @ 2.60GHz), one running the unpatched and the other this patched review, here are the results of this script (extracting the "real" in seconds from the time command):
#!/bin/sh set -eu lenght=100000000000 sizes="8000 32000 64000 128000 256000 512000 1000000" cmd="" for s in $sizes; do echo "Benching with size $s (lenght: $lenght)..." for i in $(seq 3); do time -p -o bulk.$s.$i.txt ./unix_bulk $lenght $s $s done grep real bulk.$s.*.txt | cut -d ' ' -f 2 > bulk.$s.data cmd="$cmd bulk.$s.data" done ministat -w 74 -s $cmd
Mar 8 2024
Feb 23 2024
Feb 22 2024
Feb 21 2024
On similar review (https://reviews.freebsd.org/D44005) the idea was to still build and install it, but "skip" the test if jail binary was missing.
@jamie Do you have a preference ?
In D44005#1004021, @lwhsu wrote:I don't really object this approach, but I don't really support it either. Do you think it's okay to let the test case check if jail utility exists, and skip running if no?