Lan Xia
Lan Xia
With https://github.com/adoptium/TKG/pull/393, we have remove_duplicate_tests.py to remove duplicate tests. However, there are some enhancements that we can make: - [ ] find a way to persevere comments (whether the license...
It would be nice if we can auto-detect `BUILD_LIST` value based on `TARGET`. It means that `BUILD_LIST` will be an optional value. Similar to `JDK_VERSION`. The goal is to further...
Due to historical reasons, we have `D`, `SQ`, and `Q` macros defined in makefile in TKG and used in test repos. For example: https://github.com/AdoptOpenJDK/TKG/blob/master/compile.mk#L17 https://github.com/AdoptOpenJDK/TKG/blob/master/makeGen.mk#L26 https://github.com/AdoptOpenJDK/TKG/blob/master/makeGen.mk#L28 It will be more...
When KEEP_REPORTDIR is set to false, we should not capture any passed test artifacts. However, this does not work as expected. Please see the build link below: https://ci.eclipse.org/openj9/job/Test_openjdk8_j9_extended.functional_s390x_linux_aot_Personal_testList_0/4/ It looks...
Currently, there are no TKG PR builds. All PRs need to be tested using Grinder by contributors/committers. Had a brief discussion with @renfeiw, we can leverage run-aqa GitHub action and...
We should investigate to see if it is possible to remove `ant-contrib` dependency. This will reduce our [Prerequisites](https://github.com/eclipse/openj9/blob/master/test/docs/Prerequisites.md) and simplify the playbook.
This is TriagerX sandbox. related: https://github.com/eclipse-openj9/openj9/issues/19552
`jdk_container` left files on the host machine that are owned by root. These files cannot be cleaned by Jenkins job. It causes Jenkins job to fail. ``` 12:05:52 ERROR: Cannot...
`serviceability_jvmti_j9` is a test target for openj9. https://github.com/adoptium/aqa-tests/blob/master/openjdk/playlist.xml#L370 When it fails, the `Rerun failed hotspot test cases in Grinder with hotspot_custom target` link sets TARGET=`hotspot_custom` and CUSTOM_TARGET=`` (i.e., `serviceability/jvmti/vthread/BreakpointInYieldTest/BreakpointInYieldTest.java`). This...
When USE_TESTENV_PROPERTIES=true and DYNAMIC_COMPILE=false, testenvSettings.sh gets triggered twice - once in `compile.sh` and once before `make `. This does not cause any issues, but it is not necessary. https://github.com/adoptium/aqa-tests/blob/83bec274a10eb52ac812af2acc50bb3ec4bc4673/compile.sh#L12 https://github.com/adoptium/aqa-tests/blob/83bec274a10eb52ac812af2acc50bb3ec4bc4673/buildenv/jenkins/JenkinsfileBase#L9...