From d550fdfd602e0d90b29d2457b84638fbdb87c288 Mon Sep 17 00:00:00 2001 From: kshakir Date: Tue, 14 Dec 2010 15:27:02 +0000 Subject: [PATCH] Disabling integration test to see if this restores the full test suite. git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@4833 348d0f76-0448-11de-a6fe-93d51630548a --- .../sting/jna/lsf/v7_0_6/LibBatIntegrationTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/test/org/broadinstitute/sting/jna/lsf/v7_0_6/LibBatIntegrationTest.java b/java/test/org/broadinstitute/sting/jna/lsf/v7_0_6/LibBatIntegrationTest.java index d0ed3e15b..2591fc448 100644 --- a/java/test/org/broadinstitute/sting/jna/lsf/v7_0_6/LibBatIntegrationTest.java +++ b/java/test/org/broadinstitute/sting/jna/lsf/v7_0_6/LibBatIntegrationTest.java @@ -36,14 +36,14 @@ import java.io.File; * Really a unit test, but this test will only run on systems with LSF setup. */ public class LibBatIntegrationTest extends BaseTest { - @Test + @Test(enabled=false) public void testClusterName() { String clusterName = LibLsf.ls_getclustername(); System.out.println("Cluster name: " + clusterName); Assert.assertNotNull(clusterName); } - @Test + @Test(enabled=false) public void testSubmitEcho() { String queue = "hour"; File outFile = new File("LibBatIntegrationTest.out");