Page MenuHomeFreeBSD

Framework: Introduce testing feature.
ClosedPublic

Authored by arrowd on Feb 17 2024, 5:06 PM.
Tags
None
Referenced Files
F102730716: D43949.diff
Sat, Nov 16, 11:38 AM
Unknown Object (File)
Oct 4 2024, 4:01 AM
Unknown Object (File)
Oct 3 2024, 6:30 PM
Unknown Object (File)
Oct 3 2024, 12:14 PM
Unknown Object (File)
Sep 29 2024, 3:05 AM
Unknown Object (File)
Sep 5 2024, 6:17 PM
Unknown Object (File)
Aug 22 2024, 4:11 AM
Unknown Object (File)
Jul 31 2024, 11:22 PM

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