test/sun/tools/jstack/BasicJStackTest.java

Print this page
rev 9529 : 8034960: Serviceability tests using @library failing with java.lang.NoClassDefFoundError


  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 import java.util.Arrays;
  25 
  26 import jdk.testlibrary.JDKToolLauncher;
  27 import jdk.testlibrary.OutputAnalyzer;
  28 import jdk.testlibrary.ProcessTools;
  29 
  30 /*
  31  * @test
  32  * @bug 6260070
  33  * @summary Unit test for jstack utility
  34  * @library /lib/testlibrary

  35  * @run main BasicJStackTest
  36  */
  37 public class BasicJStackTest {
  38 
  39     private static ProcessBuilder processBuilder = new ProcessBuilder();
  40 
  41     public static void main(String[] args) throws Exception {
  42         testJstackNoArgs();
  43         testJstack_l();
  44     }
  45 
  46     private static void testJstackNoArgs() throws Exception {
  47         OutputAnalyzer output = jstack();
  48         output.shouldHaveExitValue(0);
  49     }
  50 
  51     private static void testJstack_l() throws Exception {
  52         OutputAnalyzer output = jstack("-l");
  53         output.shouldHaveExitValue(0);
  54     }


  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 import java.util.Arrays;
  25 
  26 import jdk.testlibrary.JDKToolLauncher;
  27 import jdk.testlibrary.OutputAnalyzer;
  28 import jdk.testlibrary.ProcessTools;
  29 
  30 /*
  31  * @test
  32  * @bug 6260070
  33  * @summary Unit test for jstack utility
  34  * @library /lib/testlibrary
  35  * @build jdk.testlibrary.*
  36  * @run main BasicJStackTest
  37  */
  38 public class BasicJStackTest {
  39 
  40     private static ProcessBuilder processBuilder = new ProcessBuilder();
  41 
  42     public static void main(String[] args) throws Exception {
  43         testJstackNoArgs();
  44         testJstack_l();
  45     }
  46 
  47     private static void testJstackNoArgs() throws Exception {
  48         OutputAnalyzer output = jstack();
  49         output.shouldHaveExitValue(0);
  50     }
  51 
  52     private static void testJstack_l() throws Exception {
  53         OutputAnalyzer output = jstack("-l");
  54         output.shouldHaveExitValue(0);
  55     }