Page MenuHomeFreeBSD

Framework: Introduce testing feature.
ClosedPublic

Authored by arrowd on Feb 17 2024, 5:06 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Jun 23, 9:16 PM
Unknown Object (File)
Tue, Jun 23, 9:09 PM
Unknown Object (File)
Sun, Jun 21, 12:29 PM
Unknown Object (File)
Sun, Jun 21, 12:24 PM
Unknown Object (File)
May 20 2026, 3:35 AM
Unknown Object (File)
May 10 2026, 10:01 PM
Unknown Object (File)
May 10 2026, 7:53 AM
Unknown Object (File)
Apr 27 2026, 4:25 AM

Details

Summary

Setting WITH_TESTING=yes will cause running make test between stage and
package in the default pipeline.

This feature is off by default.

Another change that I put into this diff is

Mk/bsd.port.mk: Allow WITHOUT_FEATURE_PORTS to cancel WITH_FEATURE

I had to rewrite the loop as @pizzamig initially suggested.

Test Plan

Tested the feature itself on devel/zfp (that has USES=cmake:testing) and graphics/ImageMagick7 (which has just TEST_TARGET).

Tested WITH/WITHOUT stuff the following way:

make -C audio/abx -V _WITH_TESTING

make -C audio/abx -V _WITH_TESTING WITH_TESTING=yes
yes

make -C audio/abx -V _WITH_TESTING WITH_TESTING=yes WITHOUT_TESTING_PORTS=audio/abx

Diff Detail

Repository
R11 FreeBSD ports repository
Lint
No Lint Coverage
Unit
No Test Coverage
Build Status
Buildable 56072
Build 52961: arc lint + arc unit

Event Timeline

arrowd created this revision.

Around 500 ports define TEST, DEBUG, LTO options. What are implications for them?

I haven't yet got my head around options that are named after features. But it is orthogonal to this diff anyways.

This revision is now accepted and ready to land.Feb 28 2024, 9:37 AM