{"id":29423700,"url":"https://github.com/adoptium/openj9-systemtest","last_synced_at":"2025-07-12T07:37:20.511Z","repository":{"id":39615984,"uuid":"102528368","full_name":"adoptium/openj9-systemtest","owner":"adoptium","description":"Long running J9 tests","archived":false,"fork":false,"pushed_at":"2025-06-18T18:44:20.000Z","size":596,"stargazers_count":6,"open_issues_count":10,"forks_count":40,"subscribers_count":24,"default_branch":"master","last_synced_at":"2025-07-11T08:56:58.020Z","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":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adoptium.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"adoptium","custom":["eclipse.org/donate/adoptium"]}},"created_at":"2017-09-05T20:47:42.000Z","updated_at":"2025-06-18T18:44:25.000Z","dependencies_parsed_at":"2025-05-20T19:09:58.903Z","dependency_job_id":null,"html_url":"https://github.com/adoptium/openj9-systemtest","commit_stats":null,"previous_names":["eclipse-aqavit/openj9-systemtest","adoptium/openj9-systemtest","eclipse-openj9/openj9-systemtest"],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/adoptium/openj9-systemtest","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoptium%2Fopenj9-systemtest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoptium%2Fopenj9-systemtest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoptium%2Fopenj9-systemtest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoptium%2Fopenj9-systemtest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adoptium","download_url":"https://codeload.github.com/adoptium/openj9-systemtest/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoptium%2Fopenj9-systemtest/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264958203,"owners_count":23689012,"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":"2025-07-12T07:37:18.346Z","updated_at":"2025-07-12T07:37:20.505Z","avatar_url":"https://github.com/adoptium.png","language":"Java","funding_links":["https://github.com/sponsors/adoptium","eclipse.org/donate/adoptium"],"categories":[],"sub_categories":[],"readme":"\u003c!--\nCopyright (c) 2017, 2023 IBM Corp. and others\n\nThis program and the accompanying materials are made available under\nthe terms of the Eclipse Public License 2.0 which accompanies this\ndistribution and is available at https://www.eclipse.org/legal/epl-2.0/\nor the Apache License, Version 2.0 which accompanies this distribution and\nis available at https://www.apache.org/licenses/LICENSE-2.0.\n\nThis Source Code may also be made available under the following\nSecondary Licenses when the conditions for such availability set\nforth in the Eclipse Public License, v. 2.0 are satisfied: GNU\nGeneral Public License, version 2 with the GNU Classpath\nException [1] and GNU General Public License, version 2 with the\nOpenJDK Assembly Exception [2].\n\n[1] https://www.gnu.org/software/classpath/license.html\n[2] https://openjdk.org/legal/assembly-exception.html\n\nSPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 OR GPL-2.0-only WITH OpenJDK-assembly-exception-1.0\n--\u003e\n# openj9-systemtest\n\nThis repository contains the test cases which can be run against the OpenJ9\njava implmentation but not OpenJDK.\n\nThe tests all run under the [STF System Test Framework](https://github.com/AdoptOpenJDK/stf).\n\n* [Quick start (Unix)](#unix)\n* [Quick start (Windows)](#windows)\n* [More documentation](openj9.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\nproject.  To set up a development environment for creating new test\ncases, refer to [this document](openj9.build/docs/build.md).\n\nBefore running the build for the first time make sure GNU make, ant\nand wget are on your PATH.\n\nwget is only required for the make configure step, which only needs\nto be done once.\n\nEither copy, paste and execute [this script](openj9.build/scripts/openj9-systemtest-clone-make.sh)\nwhich 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:AdoptOpenJDK/stf.git stf\n\n# 3. Clone the openjdk-systemtest repository\ncd $HOME/git\ngit clone git@github.com:AdoptOpenJDK/openjdk-systemtest.git openjdk-systemtest\n\n# 4. Clone the openj9-systemtest repository\ncd $HOME/git\ngit clone git@github.com:eclipse-openj9/openj9-systemtest.git openj9-systemtest\n\n# 5. Set JAVA_HOME to a Java 8 or later Java\nexport JAVA_HOME=\u003cjava-home\u003e\n\n# 6.Install the prereqs\n# This requires wget be on the PATH\ncd $HOME/git/openj9-systemtest/openj9.build\nmake configure\n\n# 7. Build\ncd $HOME/git/openj9-systemtest/openj9.build\nmake\n\n# 8. Run the tests (the tests take some time to run (many minutes))\ncd $HOME/git/openj9-systemtest/openj9.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\nproject.  To set up a development environment for creating new test\ncases, refer to [this document](openj9.build/docs/build.md).\n\nBefore running the build for the first time make sure GNU make, ant\nand wget are on your PATH.\n\nwget is only required for the make configure step, which only needs\nto be done once.\n\nEither copy, paste and execute [this\nscript](openj9.build/scripts/openj9-systemtest-clone-make.bat) which\nruns the command below, or run the commands yourself.\n\n```dos\nREM 1. Create a directory for the git clones\nmkdir %USERPROFILE%\\git\n\nREM 2. Clone the STF repository\ncd %USERPROFILE%\\git\ngit clone git@github.com:AdoptOpenJDK/stf.git stf\n\nREM 3. Clone the openjdk-systemtest repository\ncd %USERPROFILE%\\git\ngit clone git@github.com:AdoptOpenJDK/openjdk-systemtest.git openjdk-systemtest\n\nREM 4. Clone the openj9-systemtest repository\ncd %USERPROFILE%\\git\ngit clone git@github.com:eclipse-openj9/openj9-systemtest.git openj9-systemtest\n\nREM 5. Set JAVA_HOME to a Java 9 or later Java\nSET JAVA_HOME=\u003cjava-home\u003e\n\nREM 6. Get the test case prereqs\ncd %USERPROFILE%\\git\\openj9-systemtest\\openj9.build\nmake configure\n\nREM 7. Build\ncd %USERPROFILE%\\git\\openj9-systemtest\\openj9.build\nmake\n\nREM 8. Run the tests (takes a long time (many minutes))\ncd %USERPROFILE%\\git\\openj9-systemtest\\openj9.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%2Fopenj9-systemtest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadoptium%2Fopenj9-systemtest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadoptium%2Fopenj9-systemtest/lists"}