Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 923979 - sys-apps/bfs-3.1 fails tests: ioq.c:142:12: fatal error: liburing.h: No such file or directory
Summary: sys-apps/bfs-3.1 fails tests: ioq.c:142:12: fatal error: liburing.h: No such ...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Sam James
URL:
Whiteboard:
Keywords: TESTFAILURE
Depends on:
Blocks:
 
Reported: 2024-02-07 07:55 UTC by Agostino Sarubbo
Modified: 2024-02-08 06:29 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
build.log (build.log,69.92 KB, text/plain)
2024-02-07 07:55 UTC, Agostino Sarubbo
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Agostino Sarubbo gentoo-dev 2024-02-07 07:55:29 UTC
https://blogs.gentoo.org/ago/2020/07/04/gentoo-tinderbox/

Issue: sys-apps/bfs-3.1 fails tests.
Discovered on: amd64 (internal ref: ci)

Info about the issue:
https://wiki.gentoo.org/wiki/Project:Tinderbox/Common_Issues_Helper#CF0015
Comment 1 Agostino Sarubbo gentoo-dev 2024-02-07 07:55:32 UTC
Created attachment 884439 [details]
build.log

build log and emerge --info
Comment 2 Agostino Sarubbo gentoo-dev 2024-02-07 07:55:33 UTC
Error(s) that match a know pattern in addition to what has been reported in the summary:


src/ioq.c:142:12: fatal error: liburing.h: No such file or directory
src/ioq.c:142:12: fatal error: liburing.h: No such file or directory
Comment 3 Tavian Barnes 2024-02-07 13:55:15 UTC
The ebuild does

src_test() {
	# -n check gets confused so need manual src_test definition?
	emake check
}

But bfs's makefile always rebuilds everything if the flags change.  So it should be something like

	emake check \
		USE_ACL=...
Comment 4 Sam James archtester Gentoo Infrastructure gentoo-dev Security 2024-02-08 05:48:29 UTC
(In reply to Tavian Barnes from comment #3)

Ah, doh! Thanks, let me fix that.
Comment 5 Larry the Git Cow gentoo-dev 2024-02-08 06:29:26 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9025c4dab44c413b48a9ac68b57330e2f7d3747b

commit 9025c4dab44c413b48a9ac68b57330e2f7d3747b
Author:     Sam James <sam@gentoo.org>
AuthorDate: 2024-02-08 05:53:41 +0000
Commit:     Sam James <sam@gentoo.org>
CommitDate: 2024-02-08 05:53:41 +0000

    sys-apps/bfs: fix test configuration
    
    On the bug, Tavian explains (thanks!) that everything is rebuilt if the configuration
    changes, so let's make sure to preserve the same USE_* options.
    
    Closes: https://bugs.gentoo.org/923979
    Signed-off-by: Sam James <sam@gentoo.org>

 sys-apps/bfs/bfs-3.1.ebuild | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)