test/hotspot/jtreg/runtime/CommandLine/OptionsValidation/common/optionsvalidation/JVMOption.java
changeset 48868 f0981646b6c6
parent 48744 8eb786b3d73d
parent 48789 7c8f208580cb
child 51558 a50648f7b1c8
--- a/test/hotspot/jtreg/runtime/CommandLine/OptionsValidation/common/optionsvalidation/JVMOption.java	Tue Feb 06 14:11:47 2018 +0530
+++ b/test/hotspot/jtreg/runtime/CommandLine/OptionsValidation/common/optionsvalidation/JVMOption.java	Mon Feb 05 23:12:03 2018 +0100
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -411,6 +411,9 @@
         if (out.getOutput().contains("A fatal error has been detected by the Java Runtime Environment")) {
             /* Always consider "fatal error" in output as fail */
             errorMessage = "JVM output reports a fatal error. JVM exited with code " + exitCodeString + "!";
+        } else if (out.getStderr().contains("Ignoring option " + name)) {
+            // Watch for newly obsoleted, but not yet removed, flags
+            System.out.println("SKIPPED: Ignoring test result for obsolete flag " + name);
         } else if (valid == true) {
             if (!allowedExitCodes.contains(exitCode)) {
                 errorMessage = "JVM exited with unexpected error code = " + exitCodeString;