diff --git a/test/README.md b/test/README.md index eca85630ed3..8042f93cd33 100644 --- a/test/README.md +++ b/test/README.md @@ -132,7 +132,7 @@ make _testList TESTLIST=jit_jitt,jit_recognizedMethod,testSCCMLTests2_1 If a test is disabled using `` tag in playlist.xml, it can be executed through specifying the test target or adding `disabled` in front of regular target. ``` - make _testA // testA has tag in playlist.xml + make _disabled.testA // testA has tag in playlist.xml make _disabled.sanity.functional make _disabled.extended ``` diff --git a/test/docs/OpenJ9TestUserGuide.md b/test/docs/OpenJ9TestUserGuide.md index b0e546441d5..621750ca4cd 100644 --- a/test/docs/OpenJ9TestUserGuide.md +++ b/test/docs/OpenJ9TestUserGuide.md @@ -266,7 +266,7 @@ inside the `` element that you want to exclude. If a test is disabled using `` tag in playlist.xml, it can be executed by specifying the test target or adding `disabled` in front of its top-level test target. ``` - make _testA // testA has tag in playlist.xml + make _disabled.testA // testA has tag in playlist.xml make _disabled.sanity.functional make _disabled.extended ```