2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2026-09-05 04:27:55 +00:00

test(build): cover the true source-only value

This commit is contained in:
Vinícius Ferrão
2026-08-26 19:33:45 -03:00
parent 427a49d0ac
commit c1ff0a07b4
+1
View File
@@ -32,6 +32,7 @@ my @modes = (
[ 'SRCONLY=no', 'SRCONLY=no', '-ba -ta' ],
[ 'SRCONLY=1', 'SRCONLY=1', '-bs -ts' ],
[ 'SRCONLY=yes', 'SRCONLY=yes', '-bs -ts' ],
[ 'SRCONLY=true', 'SRCONLY=true', '-bs -ts' ],
);
foreach my $case (@modes) {
my ( $name, $assignment, $expected ) = @{$case};