Update openjdk problemlist_*.txt to remove comment lines for recording different issues for same failure testcases.
Non-comment line format of Jtreg problemlist.txt is
test-name list-of-bug-numbers list-of-platforms description
list-of-bug-numbers can be comma-separated lists with no embedded whitespace. So if we need to exclude one testcase on different platform for different reason we can use comma-separated links instead of adding extra duplicate line, which will also simply parsing the problemlist files to do some automation check jobs.
For example , the following case we can updated to one line instead of two lines
compiler/7184394/TestAESMain.java https://github.com/adoptium/aqa-tests/issues/1051,https://github.com/adoptium/infrastructure/issues/2893 linux-s390x,solaris-sparcv9
https://github.com/adoptium/aqa-tests/blob/master/openjdk/excludes/ProblemList_openjdk8.txt#L23C1-L25
# compiler/7184394/TestAESMain.java https://github.com/adoptium/infrastructure/issues/2893
compiler/7184394/TestAESMain.java https://github.com/adoptium/aqa-tests/issues/1051 linux-s390x,solaris-sparcv9
This issue to update all problemlist files to remove comment lines, which was added to record different issues for same failure testcases.
hey @sophia-guo am working on this issue !