Skip to content

Commit 7a63de1

Browse files
authored
Correct URLs for STF repository (#120)
Signed-off-by: Keith W. Campbell <keithc@ca.ibm.com>
1 parent 2129b19 commit 7a63de1

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

README.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
This repository contains the System Test Framework (STF) used by test cases in the javasvt repository to execute multi process, multi step Java tests.
44

5-
[Quick start (Unix)](#unix)
6-
[Quick start (Windows)](#windows)
5+
[Quick start (Unix)](#unix)
6+
[Quick start (Windows)](#windows)
77
[More documentation](stf.build/docs/build.md)
88

99
<a name="unix"></a>
@@ -17,14 +17,13 @@ wget is only required for the make configure step, which only needs to be done o
1717

1818
Either copy, paste and execute [this script](stf.build/scripts/stf_clone_make.sh) which runs the command below, or run the commands yourself.
1919

20-
2120
```shell
2221
# 1. Create a directory for the git clone
2322
mkdir -p $HOME/git
2423

2524
# 2. Clone the git repository
2625
cd $HOME/git
27-
git clone https://github.com/AdoptOpenJDK/stf.git stf
26+
git clone https://github.com/adoptium/STF.git stf
2827

2928
# 3. Set JAVA_HOME to a Java 8 or later Java
3029

@@ -62,7 +61,7 @@ mkdir c:\%USERPROFILE%\git
6261
6362
REM 2. Clone the test cases
6463
cd c:\%USERPROFILE%\git
65-
git clone https://github.com/AdoptOpenJDK/stf.git stf
64+
git clone https://github.com/adoptium/STF.git stf
6665
6766
REM 3. Set JAVA_HOME to a Java 8 or later Java
6867
SET JAVA_HOME=<java-home>

stf.build/docs/build.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ These prereqs must be installed before attempting to build STF
1818
### Installing the prereqs using the build scripts
1919
1. An internet connection is required
2020
2. Review the list of prereqs listed under 'Installing prereqs manually' and confirm that you accept their license terms.
21-
3. `git clone https://github.com/adoptium/stf.git stf`
21+
3. `git clone https://github.com/adoptium/STF.git stf`
2222
4. Change into the stf.build directory `cd <git-root>;stf.build`
2323
5. `make configure`
2424

@@ -36,7 +36,7 @@ These prereqs must be installed before attempting to build STF
3636
| wget | https://www.gnu.org/copyleft/gpl.html | stf.build | Windows - download from https://sourceforge.net/projects/gnuwin32/files/wget/1.11.4-1/wget-1.11.4-1-bin.zip | Add to PATH | No |
3737

3838
## Building from a command line
39-
1. `git clone https://github.com/adoptium/stf.git stf`
39+
1. `git clone https://github.com/adoptium/STF.git stf`
4040
2. Change into the stf.build directory `cd <git-root>;stf.build`
4141
3. `make`
4242

@@ -53,6 +53,6 @@ line arguments when the tests execute outside of Eclipse.
5353
- Select the directory containing the prereqs. Select import into the new systemtest_prereqs folder. Do not tick
5454
the 'Create top level folder' check box (otherwise you get an extra 'systemtest_prereqs' folder which you do not
5555
want).
56-
3. `git clone https://github.com/adoptium/stf.git stf`
56+
3. `git clone https://github.com/adoptium/STF.git stf`
5757
4. Import the STF projects into Eclipse (Find and import Eclipse projects)
58-
5. Eclipse should now build the projects without errors (check the 'Problems' view).
58+
5. Eclipse should now build the projects without errors (check the 'Problems' view).

stf.build/scripts/stf_clone_make.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ REM limitations under the License.
1313
REM Save current directory
1414
set currdir=%cd%
1515
REM Clone
16-
(IF NOT EXIST %USERPROFILE%\git mkdir %USERPROFILE%\git) && cd %USERPROFILE%\git && (IF EXIST stf rmdir /s /q stf) && git clone https://github.com/adoptium/stf.git stf
16+
(IF NOT EXIST %USERPROFILE%\git mkdir %USERPROFILE%\git) && cd %USERPROFILE%\git && (IF EXIST stf rmdir /s /q stf) && git clone https://github.com/adoptium/STF.git stf
1717
REM Configure (get prereqs)
1818
cd %USERPROFILE%\git\stf\stf.build
1919
make configure

stf.build/scripts/stf_clone_make.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#-------------------------------------------------------------------------
1515

1616
# Clone
17-
mkdir -p $HOME/git && cd $HOME/git && rm -rf stf && mkdir stf && git clone https://github.com/adoptium/stf.git stf
17+
mkdir -p $HOME/git && cd $HOME/git && rm -rf stf && mkdir stf && git clone https://github.com/adoptium/STF.git stf
1818
if [ "$?" != "0" ]; then
1919
echo "Error cloning stf" 1>&2
2020
exit 1

0 commit comments

Comments
 (0)