Path: blob/master/test/functional/cmdLineTests/cmdLineTest_J9tests/j9tests_native.xml
6004 views
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>12<!--3Copyright (c) 2019, 2019 IBM Corp. and others45This program and the accompanying materials are made available under6the terms of the Eclipse Public License 2.0 which accompanies this7distribution and is available at https://www.eclipse.org/legal/epl-2.0/8or the Apache License, Version 2.0 which accompanies this distribution and9is available at https://www.apache.org/licenses/LICENSE-2.0.1011This Source Code may also be made available under the following12Secondary Licenses when the conditions for such availability set13forth in the Eclipse Public License, v. 2.0 are satisfied: GNU14General Public License, version 2 with the GNU Classpath15Exception [1] and GNU General Public License, version 2 with the16OpenJDK Assembly Exception [2].1718[1] https://www.gnu.org/software/classpath/license.html19[2] http://openjdk.java.net/legal/assembly-exception.html2021SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception22-->2324<!DOCTYPE suite SYSTEM "cmdlinetester.dtd">2526<suite id="J9 Command-Line Option Tests" timeout="600">27<variable name="EMPTY_OPTION" value="-Custom:EmptyOption"/>28<variable name="WHITESPACE_OPTION" value="-Custom:WhitespaceOption"/>29<variable name="IGNORE_UNRECOGNIZED_OPTIONS" value="-Custom:IgnoreUnrecognizedOptions"/>30<variable name="COMMANDLINE_OPTION_UNRECOGNIZED" value="Command-line option unrecognised"/>31<variable name="TEST_NATIVEVMARGS_CONCLUDED_WITH_CODE" value="[MSG] Test nativevmargs concluded with code:"/>3233<test id="test nativevmargs ignore empty and whitespace VM options">34<command>$NATIVEVMARGS$ $JVMLIBPATH$ $IGNORE_UNRECOGNIZED_OPTIONS$ $EMPTY_OPTION$ $WHITESPACE_OPTION$</command>35<output type="success" caseSensitive="yes" regex="no">$TEST_NATIVEVMARGS_CONCLUDED_WITH_CODE$ 0</output>36<output type="failure" regex="no">[ERR]</output>37</test>3839<test id="test nativevmargs reject empty VM option">40<command>$NATIVEVMARGS$ $JVMLIBPATH$ $EMPTY_OPTION$</command>41<output type="success" caseSensitive="yes" regex="no">$COMMANDLINE_OPTION_UNRECOGNIZED$</output>42<output type="required" caseSensitive="yes" regex="no">$TEST_NATIVEVMARGS_CONCLUDED_WITH_CODE$ 7</output>43</test>4445<test id="test nativevmargs reject whitespace VM option">46<command>$NATIVEVMARGS$ $JVMLIBPATH$ $WHITESPACE_OPTION$</command>47<output type="success" caseSensitive="yes" regex="no">$COMMANDLINE_OPTION_UNRECOGNIZED$</output>48<output type="required" caseSensitive="yes" regex="no">$TEST_NATIVEVMARGS_CONCLUDED_WITH_CODE$ 7</output>49</test>5051</suite>525354