aqa-tests: Parse problem list and generate json file

As part of Create a Disabled tests pipeline, we need to parse openjdk problemlist and get json file:

[{
"JDK_VERSION" : 17,
"JDK_IMPL" : "hotspot",
"TARGET" : "jdk_custom",
"CUSTOM_TARGET" : "java/lang/ClassLoader/nativeLibrary/NativeLibraryTest.java",
"GIT_ISSUE" : "https://github.com/adoptium/temurin-build/issues/248",
"PLATFORM" : "all"
},{
"JDK_VERSION" : 16,
"JDK_IMPL" : "openj9",
"TARGET" : "jdk_custom",
"CUSTOM_TARGET" : "java/lang/ClassLoader/Assert.java",
"GIT_ISSUE" : "https://github.com/eclipse-openj9/openj9/issues/6668",
"PLATFORM" : "x86-64_mac"
}]

About this issue

  • Original URL
  • State: closed
  • Created 3 years ago
  • Comments: 18 (18 by maintainers)

Most upvoted comments

@llxia @smlambert Should this still be open? https://github.com/adoptium/aqa-tests/pull/2858 was merged in and the parser is functional (#2910 and #2905 track further development already)

Here is my first attempt at writing this parser: https://github.com/adoptium/aqa-tests/pull/2858

Please review it