# openjdk-systemtest **Repository Path**: mirrors_AdoptOpenJDK/openjdk-systemtest ## Basic Information - **Project Name**: openjdk-systemtest - **Description**: Java load testing and other full system application tests - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # aqa-systemtest This repository contains the test cases which can be run against an OpenJDK with Hotspot or OpenJDK with Eclipse OpenJ9 based java implementation. The tests all run under the [STF System Test Framework](https://github.com/adoptium/stf). [Quick start (Unix)](#unix) [Quick start (Windows)](#windows) [More documentation](openjdk.build/docs/build.md) ## Quick start (Unix) This quick start is for people who want to clone and build the project. To set up a development environment for creating new test cases, refer to [this document](openjdk.build/docs/build.md). Before running the build for the first time make sure GNU make, ant and wget are on your PATH. wget is only required for the make configure step, which only needs to be done once. Either copy, paste and execute [this script](openjdk.build/scripts/aqa-systemtest-clone-make.sh) which runs the command below, or run the commands yourself. ```shell # 1. Create a directory for the git clone mkdir -p $HOME/git # 2. Clone the STF repository cd $HOME/git git clone git@github.com:adoptium/STF.git stf # 3. Clone the aqa-systemtest repository cd $HOME/git git clone git@github.com:adoptium/aqa-systemtest.git aqa-systemtest # 4. Set JAVA_HOME to a Java 8 or later Java export JAVA_HOME= # 5.Install the prereqs # This requires wget to be on the PATH cd $HOME/git/aqa-systemtest/openjdk.build make configure # 6. Build cd $HOME/git/aqa-systemtest/openjdk.build make # 7. Run the tests (takes about an hour, depending on the test machine) cd $HOME/git/aqa-systemtest/openjdk.build make test echo See /tmp/stf to view the test results ``` ## Quick Start (Windows) This quick start is for people who want to clone and build the project. To set up a development environment for creating new test cases, refer to [this document](openjdk.build/docs/build.md). Before running the build for the first time make sure GNU make, ant and wget are on your PATH. wget is only required for the make configure step, which only needs to be done once. Either copy, paste and execute [this script](openjdk.build/scripts/aqa-systemtest-clone-make.bat) which runs the command below, or run the commands yourself. ```dos REM 1. Create a directory for the git clones mkdir c:\%USERPROFILE%\git REM 2. Clone the STF repository cd c:\%USERPROFILE%\git git clone git@github.com:adoptium/STF.git stf REM 3. Clone the test cases repository cd c:\%USERPROFILE%\git git clone git@github.com:adoptium/aqa-systemtest.git aqa-systemtest REM 4. Set JAVA_HOME to a Java 8 or later Java SET JAVA_HOME= REM 5. Get the test case prereqs cd C:\%USERPROFILE%\git\aqa-systemtest\openjdk.build make configure REM 6. Build cd C:\%USERPROFILE%\git\aqa-systemtest\openjdk.build make REM 7. Run the tests (takes about an hour, depending on the test machine) cd C:\%USERPROFILE%\git\aqa-systemtest\openjdk.build make test echo See c:\stf_temp to view the test results ```