On 6/4/19 5:56 PM, Joseph D. Darcy wrote:
Should the test be removed from the catch-all group as part of this change?
Ah, good question. But the answer is that it doesn't need to be. The "catch-all"
group jdk_util_other is defined thus:
--
# All util components not part of some other util category
jdk_util_other = \
java/util \
sun/util \
-:jdk_collections \
-:jdk_concurrent \
-:jdk_stream
--
This syntax defines jdk_util_other to be the tests in the java/util and sun/util
directories, MINUS the tests in the jdk_collections and a couple other groups.
Thus adding the test to jdk_collections automatically removes it from
jdk_util_other.
s'marks