Lan Xia

Results 146 issues of Lan Xia

New exclude files (for openjdk, functional, etc) have to be created for the new JDK version regardless of whether we have any new changes. See https://github.com/eclipse-openj9/openj9/issues/17901. I think we should...

enhancement

Parallel Tests should not show up for serial builds. There is no need to take an extra step to get a machine and collect TAP files. https://ci.adoptium.net/job/Test_openjdk17_hs_extended.perf_ppc64le_linux/

bug

To improve consistency, clarity, efficiency, and automation compatibility in the future, I think that we should create issue templates for common scenarios: - [ ] Report AQA test failure -...

We should enhance https://github.com/adoptium/aqa-test-tools/pull/1109 to support user-configurable Repos for possible issues. Create a config file for a list of repo urls and repos. Loop through them to return possible issues....

This is related to https://github.com/adoptium/aqa-tests/issues/6272. Since the GitHub workflow will be delivered to the tools repository, we're creating this issue in the same repository to allow us to trigger the...

gsoc_25

In dynamic parallel mode, the user-defined TEST_TIME is automatically overridden if any test exceeds that duration (t > TEST_TIME). In such cases, TEST_TIME is updated to match the longest test...

enhancement

If there are test crashes, TKG should run `jpackcore -x `. ``` copies of executable files and libraries are required for a full analysis of a core dump (you can...

Display 10 - 20 lines after `1XMCURTHDINFO`. `1TISIGINFO` - one line ``` 1XMCURTHDINFO Current thread 3XMTHREADINFO "ForkJoinPool.commonPool-worker-1" J9VMThread:0x000076FC805EB900, omrthread_t:0x000076FC805DF508, java/lang/Thread:0x000076FC5E43C578, state:R, rawStateValue:0x1, prio=5 3XMJAVALTHREAD (java/lang/Thread getId:0x19, isDaemon:true) 3XMJAVALTHRCCL jdk/internal/loader/ClassLoaders$AppClassLoader(0x000076FC5E068620) 3XMTHREADINFO1...

In [src/org/testKitGen/MkGen.java](https://github.com/adoptium/TKG/blob/58e40ba0d6563039c44f20b38adbfd4820faef7a/src/org/testKitGen/MkGen.java), perl `-MTime::HiRes` is used to get `Start Time` and `Finish Time`. https://github.com/adoptium/TKG/blob/58e40ba0d6563039c44f20b38adbfd4820faef7a/src/org/testKitGen/MkGen.java#L129 https://github.com/adoptium/TKG/blob/58e40ba0d6563039c44f20b38adbfd4820faef7a/src/org/testKitGen/MkGen.java#L215 https://github.com/adoptium/TKG/blob/58e40ba0d6563039c44f20b38adbfd4820faef7a/src/org/testKitGen/MkGen.java#L231 https://github.com/adoptium/TKG/blob/58e40ba0d6563039c44f20b38adbfd4820faef7a/src/org/testKitGen/MkGen.java#L241 The time is further processed to get the test execution time. https://github.com/adoptium/TKG/blob/58e40ba0d6563039c44f20b38adbfd4820faef7a/scripts/resultsSum.pl#L141-L149 Normal...

soc_25

Entry point: https://github.com/adoptium/TKG/blob/master/scripts/testTKG/testRunner.py Example: https://github.com/adoptium/TKG/blob/master/scripts/testTKG/test_base.py Background info: testRunner.py can be triggered via github workflow https://github.com/adoptium/TKG/blob/58e40ba0d6563039c44f20b38adbfd4820faef7a/.github/workflows/testTKG.yml#L56 To add a test case for resultsSum.pl https://github.com/adoptium/TKG/blob/master/scripts/resultsSum.pl: - create new test_resultsSum.py under scripts/testTKG -...

soc_25