{"id":18666963,"url":"https://github.com/adoptium/aqa-systemtest","last_synced_at":"2025-04-06T00:07:26.004Z","repository":{"id":37793883,"uuid":"102844098","full_name":"adoptium/aqa-systemtest","owner":"adoptium","description":"Java load testing and other full system application tests","archived":false,"fork":false,"pushed_at":"2025-03-05T22:13:38.000Z","size":7027,"stargazers_count":25,"open_issues_count":19,"forks_count":68,"subscribers_count":20,"default_branch":"master","last_synced_at":"2025-03-29T23:08:10.403Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adoptium.png","metadata":{"funding":{"github":"adoptium","custom":["eclipse.org/donate/adoptium"]},"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-09-08T09:26:37.000Z","updated_at":"2025-03-18T10:42:04.000Z","dependencies_parsed_at":"2024-11-07T08:37:46.821Z","dependency_job_id":"2360c940-968b-4d91-b0fe-5e838bbbccb3","html_url":"https://github.com/adoptium/aqa-systemtest","commit_stats":null,"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoptium%2Faqa-systemtest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoptium%2Faqa-systemtest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoptium%2Faqa-systemtest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoptium%2Faqa-systemtest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adoptium","download_url":"https://codeload.github.com/adoptium/aqa-systemtest/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247415967,"owners_count":20935388,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T08:35:02.612Z","updated_at":"2025-04-06T00:07:25.987Z","avatar_url":"https://github.com/adoptium.png","language":"Java","funding_links":["https://github.com/sponsors/adoptium","eclipse.org/donate/adoptium"],"categories":[],"sub_categories":[],"readme":"# aqa-systemtest\n\nThis repository contains the test cases which can be run against an OpenJDK with Hotspot or OpenJDK with Eclipse OpenJ9 based java implementation.\n\nThe tests all run under the [STF System Test Framework](https://github.com/adoptium/stf).\n\n[Quick start (Unix)](#unix)\n[Quick start (Windows)](#windows)\n[More documentation](openjdk.build/docs/build.md)\n\n\u003ca name=\"unix\"\u003e\u003c/a\u003e\n## Quick start (Unix)\n\nThis 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).\n\nBefore running the build for the first time make sure GNU make, ant and wget are on your PATH.\n\nwget is only required for the make configure step, which only needs to be done once.\n\nEither copy, paste and execute [this script](openjdk.build/scripts/aqa-systemtest-clone-make.sh) which runs the command below, or run the commands yourself.\n\n```shell\n# 1. Create a directory for the git clone\nmkdir -p $HOME/git\n\n# 2. Clone the STF repository\ncd $HOME/git\ngit clone git@github.com:adoptium/STF.git stf\n\n# 3. Clone the aqa-systemtest repository\ncd $HOME/git\ngit clone git@github.com:adoptium/aqa-systemtest.git aqa-systemtest\n\n# 4. Set JAVA_HOME to a Java 8 or later Java\n\nexport JAVA_HOME=\u003cjava-home\u003e\n\n# 5.Install the prereqs\n# This requires wget to be on the PATH\ncd $HOME/git/aqa-systemtest/openjdk.build\nmake configure\n\n# 6. Build\ncd $HOME/git/aqa-systemtest/openjdk.build\nmake\n\n# 7. Run the tests (takes about an hour, depending on the test machine)\ncd $HOME/git/aqa-systemtest/openjdk.build\nmake test\necho See /tmp/stf to view the test results\n```\n\n\u003ca name=\"windows\"\u003e\u003c/a\u003e\n## Quick Start (Windows)\n\nThis 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).\n\nBefore running the build for the first time make sure GNU make, ant and wget are on your PATH.\n\nwget is only required for the make configure step, which only needs to be done once.\n\nEither copy, paste and execute [this script](openjdk.build/scripts/aqa-systemtest-clone-make.bat) which runs the command below, or run the commands yourself.\n\n```dos\nREM 1. Create a directory for the git clones\nmkdir c:\\%USERPROFILE%\\git\n\nREM 2. Clone the STF repository\ncd c:\\%USERPROFILE%\\git\ngit clone git@github.com:adoptium/STF.git stf\n\nREM 3. Clone the test cases repository\ncd c:\\%USERPROFILE%\\git\ngit clone git@github.com:adoptium/aqa-systemtest.git aqa-systemtest\n\nREM 4. Set JAVA_HOME to a Java 8 or later Java\nSET JAVA_HOME=\u003cjava-home\u003e\n\nREM 5. Get the test case prereqs\ncd C:\\%USERPROFILE%\\git\\aqa-systemtest\\openjdk.build\nmake configure\n\nREM 6. Build\ncd C:\\%USERPROFILE%\\git\\aqa-systemtest\\openjdk.build\nmake\n\nREM 7. Run the tests (takes about an hour, depending on the test machine)\ncd C:\\%USERPROFILE%\\git\\aqa-systemtest\\openjdk.build\nmake test\necho See c:\\stf_temp to view the test results\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadoptium%2Faqa-systemtest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadoptium%2Faqa-systemtest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadoptium%2Faqa-systemtest/lists"}