From cf798c127f2c74163d392034298664de63eddd43 Mon Sep 17 00:00:00 2001 From: Tianyu Zuo Date: Mon, 23 Apr 2018 12:02:43 -0400 Subject: [PATCH] update test docs to match test structure * update test docs to match test structure [ci skip] Issue:#1708 Signed-off-by: Tianyu Zuo --- test/README.md | 6 +++--- test/docs/OpenJ9TestUserGuide.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/test/README.md b/test/README.md index c8b581efc6b..63b5851d490 100644 --- a/test/README.md +++ b/test/README.md @@ -58,7 +58,7 @@ way to shortcut the compilation process to reduce compilation time. If names that match within `BUILD_LIST`. ``` - export BUILD_LIST=TestUtilities,Java8andUp + export BUILD_LIST=functional/TestUtilities,functional/Java8andUp make compile ``` @@ -120,11 +120,11 @@ The example below executes all of the sanity tests found within the JIT_Test directory ``` - make -C ../JIT_Test -f autoGen.mk _sanity + make -C ../functional/JIT_Test -f autoGen.mk _sanity ``` or ``` - cd ../JIT_Test; make -f autoGen.mk _sanity + cd ../functional/JIT_Test; make -f autoGen.mk _sanity ``` diff --git a/test/docs/OpenJ9TestUserGuide.md b/test/docs/OpenJ9TestUserGuide.md index cbc1740265e..60274664cde 100644 --- a/test/docs/OpenJ9TestUserGuide.md +++ b/test/docs/OpenJ9TestUserGuide.md @@ -77,7 +77,7 @@ Please read [DependentLibs.md](./DependentLibs.md) for details. * for Java8/Java9 functionality - If you have added new features to OpenJ9, you will likely - need to add new tests. Check out openj9/test/TestExample for + need to add new tests. Check out openj9/test/functional/TestExample for the format to use. - If you have many new test cases to add and special build @@ -149,7 +149,7 @@ target or make -C path/to/directory -f autoGen.mk testTarget
e.g., ``` - cd test/TestExample + cd test/functional/TestExample make -f autoGen.mk _sanity ```