From ce01bb325858855a0091ab2b4e2199a71efbad7d Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Tue, 21 May 2024 14:59:10 +0000 Subject: [PATCH] Editorial updates --- t/TestUtil.pm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/t/TestUtil.pm b/t/TestUtil.pm index 0b6812921..d0c665b8d 100644 --- a/t/TestUtil.pm +++ b/t/TestUtil.pm @@ -70,10 +70,13 @@ an array of DS expressions for "undelegated" DS =back -The array of mandatory message tags or the array of forbidden message tags, but not both, could be -undefined. If the mandatory message tag array is undefined, then it will be generated to contain -all message tags not included in the forbidden message tag array. The same mechanism is used if the -forbidden message tag array is undefined. +If the array of mandatory message tags is C, it means that any message tag +in "alltags" not explicitly forbidden must be emitted. + +If the array of forbidden message tags is C, it means that any message tag +in "alltags" not explicitly allowed must not be emitted. + +Both of the above arrayrefs cannot be simultaneously C. The arrays of mandatory message tags and forbidden message tags, respectively, can be empty, but not both. At least one of the arrays must be non-empty.