Skip to content

Commit

Permalink
[EagerAppCDS] fix spelling mistakes
Browse files Browse the repository at this point in the history
Summary: as title

Test Plan: ci jtreg cds+quickstart

Reviewed-by: lingjun-cg, yuleil
  • Loading branch information
jia-wei-tang committed Jul 19, 2023
1 parent 5b9522c commit d201f8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ void runAsReplayer() throws Exception {
void destroyCache() throws Exception {
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xquickstart:path=" + cachepath, "-Xquickstart:verbose,destroy", "-version");
OutputAnalyzer output = new OutputAnalyzer(pb.start());
output.shouldContain("destory the cache folder");
output.shouldContain("destroy the cache folder");
output.shouldHaveExitValue(0);
}

Expand Down
2 changes: 1 addition & 1 deletion test/jdk/com/alibaba/quickstart/TestNotifyDump.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ static void verifyPathSetting(String parentDir) throws Exception {
static void destroyCache(String parentDir) throws Exception {
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xquickstart:path=" + parentDir + "/testnotifydump", "-Xquickstart:verbose,destroy", "-version");
OutputAnalyzer output = new OutputAnalyzer(pb.start());
output.shouldContain("destory the cache folder");
output.shouldContain("destroy the cache folder");
output.shouldHaveExitValue(0);
}
}

0 comments on commit d201f8b

Please sign in to comment.