< prev index next >

test/testlibrary_tests/OutputAnalyzerReportingTest.java

Print this page




  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 /*
  26  * @test
  27  * @summary Test the OutputAnalyzer reporting functionality,
  28  *     such as printing additional diagnostic info
  29  *     (exit code, stdout, stderr, command line, etc.)
  30  * @library /testlibrary


  31  */
  32 
  33 import java.io.ByteArrayOutputStream;
  34 import java.io.PrintStream;
  35 
  36 import com.oracle.java.testlibrary.OutputAnalyzer;
  37 import com.oracle.java.testlibrary.ProcessTools;
  38 
  39 
  40 public class OutputAnalyzerReportingTest {
  41 
  42     public static void main(String[] args) throws Exception {
  43         // Create the output analyzer under test
  44         String stdout = "aaaaaa";
  45         String stderr = "bbbbbb";
  46         OutputAnalyzer output = new OutputAnalyzer(stdout, stderr);
  47 
  48         // Expected summary values should be the same for all cases,
  49         // since the outputAnalyzer object is the same
  50         String expectedExitValue = "-1";




  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 /*
  26  * @test
  27  * @summary Test the OutputAnalyzer reporting functionality,
  28  *     such as printing additional diagnostic info
  29  *     (exit code, stdout, stderr, command line, etc.)
  30  * @library /testlibrary
  31  * @build com.oracle.java.testlibrary.*
  32  * @run main/othervm OutputAnalyzerReportingTest
  33  */
  34 
  35 import java.io.ByteArrayOutputStream;
  36 import java.io.PrintStream;
  37 
  38 import com.oracle.java.testlibrary.OutputAnalyzer;
  39 import com.oracle.java.testlibrary.ProcessTools;
  40 
  41 
  42 public class OutputAnalyzerReportingTest {
  43 
  44     public static void main(String[] args) throws Exception {
  45         // Create the output analyzer under test
  46         String stdout = "aaaaaa";
  47         String stderr = "bbbbbb";
  48         OutputAnalyzer output = new OutputAnalyzer(stdout, stderr);
  49 
  50         // Expected summary values should be the same for all cases,
  51         // since the outputAnalyzer object is the same
  52         String expectedExitValue = "-1";


< prev index next >