blob: f7ed753a5769f1f87b044193370969be0fb6e0d9 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @author Serguei S.Zapreyev
*/
package java.lang;
import junit.framework.TestCase;
/*
* Created on March 29, 2006
*
* This RuntimeAdditionalTest class is used to test the Core API Runtime class
*
*/
/**
* ###############################################################################
* ###############################################################################
* TODO: 1.
* ###############################################################################
* ###############################################################################
*/
public class RuntimeAdditionalTest3 extends TestCase {
/**
* exitValue java process to catch the IllegalThreadStateException
*/
public void test_4() {
System.out.println("==test_4===");
if (RuntimeAdditionalTest0.os.equals("Unk")) {
fail("WARNING (test_4): unknown operating system.");
}
try {
String cmnd = RuntimeAdditionalTest0.javaStarter;
Process pi3 = Runtime.getRuntime().exec(cmnd);
/*System.out.println(Integer.toString(*/pi3.exitValue()/*))*/;
} catch (IllegalThreadStateException eeee) {
//System.out.println("PASSED: test_4");
return;
} catch (java.io.IOException eeee) {
eeee.printStackTrace();
fail("WARNING: test_4 didn't work");
}
fail("FAILED: test_4");
}
}