test/hotspot/jtreg/serviceability/sa/ClhsdbLauncher.java
changeset 58460 13f29c43b6c7
parent 53635 247e5ca412f5
equal deleted inserted replaced
58459:e25b317d0350 58460:13f29c43b6c7
   138 
   138 
   139         String[] parts = output.split("hsdb>");
   139         String[] parts = output.split("hsdb>");
   140         for (String cmd : commands) {
   140         for (String cmd : commands) {
   141             int index = commands.indexOf(cmd) + 1;
   141             int index = commands.indexOf(cmd) + 1;
   142             OutputAnalyzer out = new OutputAnalyzer(parts[index]);
   142             OutputAnalyzer out = new OutputAnalyzer(parts[index]);
       
   143             out.shouldNotMatch("Unrecognized command.");
   143 
   144 
   144             if (expectedStrMap != null) {
   145             if (expectedStrMap != null) {
   145                 List<String> expectedStr = expectedStrMap.get(cmd);
   146                 List<String> expectedStr = expectedStrMap.get(cmd);
   146                 if (expectedStr != null) {
   147                 if (expectedStr != null) {
   147                     for (String exp : expectedStr) {
   148                     for (String exp : expectedStr) {