< prev index next >

test/compiler/compilercontrol/parser/DirectiveParserTest.java

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8137167
  27  * @summary Tests directive json parser
  28  * @modules java.base/jdk.internal.misc
  29  * @library /testlibrary /test/lib /
  30  *
  31  * @run driver compiler.compilercontrol.parser.DirectiveParserTest
  32  */
  33 
  34 package compiler.compilercontrol.parser;
  35 
  36 import compiler.compilercontrol.share.JSONFile;
  37 import jdk.test.lib.Asserts;
  38 import jdk.test.lib.OutputAnalyzer;
  39 import jdk.test.lib.Utils;
  40 
  41 public class DirectiveParserTest {
  42     private static final String ERROR_MSG = "VM should exit with error "
  43             + "on incorrect JSON file: ";
  44     private static final String EXPECTED_ERROR_STRING = "Parsing of compiler"
  45             + " directives failed";
  46 
  47     public static void main(String[] args) {
  48         simpleTest();
  49         nonMatchingBrackets();
  50         arrayTest();
  51         emptyObjectTest();
  52         emptyFile();
  53         noFile();
  54         directory();
  55     }
  56 
  57     private static void simpleTest() {
  58         String fileName = "simple.json";




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8137167
  27  * @summary Tests directive json parser
  28  * @modules java.base/jdk.internal.misc
  29  * @library /test/lib /
  30  *
  31  * @run driver compiler.compilercontrol.parser.DirectiveParserTest
  32  */
  33 
  34 package compiler.compilercontrol.parser;
  35 
  36 import compiler.compilercontrol.share.JSONFile;
  37 import jdk.test.lib.Asserts;
  38 import jdk.test.lib.process.OutputAnalyzer;
  39 import jdk.test.lib.Utils;
  40 
  41 public class DirectiveParserTest {
  42     private static final String ERROR_MSG = "VM should exit with error "
  43             + "on incorrect JSON file: ";
  44     private static final String EXPECTED_ERROR_STRING = "Parsing of compiler"
  45             + " directives failed";
  46 
  47     public static void main(String[] args) {
  48         simpleTest();
  49         nonMatchingBrackets();
  50         arrayTest();
  51         emptyObjectTest();
  52         emptyFile();
  53         noFile();
  54         directory();
  55     }
  56 
  57     private static void simpleTest() {
  58         String fileName = "simple.json";


< prev index next >