Return-Path: X-Original-To: apmail-activemq-commits-archive@www.apache.org Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B2ADEE689 for ; Wed, 27 Feb 2013 21:22:28 +0000 (UTC) Received: (qmail 60675 invoked by uid 500); 27 Feb 2013 21:22:28 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 60622 invoked by uid 500); 27 Feb 2013 21:22:28 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 60615 invoked by uid 99); 27 Feb 2013 21:22:28 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Feb 2013 21:22:28 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Feb 2013 21:22:26 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 75864238897F; Wed, 27 Feb 2013 21:22:06 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1450967 - /activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/test/csharp/InvalidCredentialsTest.cs Date: Wed, 27 Feb 2013 21:22:06 -0000 To: commits@activemq.apache.org From: jgomes@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130227212206.75864238897F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jgomes Date: Wed Feb 27 21:22:06 2013 New Revision: 1450967 URL: http://svn.apache.org/r1450967 Log: Conditional compilation for Compact Framework. Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/test/csharp/InvalidCredentialsTest.cs Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/test/csharp/InvalidCredentialsTest.cs URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/test/csharp/InvalidCredentialsTest.cs?rev=1450967&r1=1450966&r2=1450967&view=diff ============================================================================== --- activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/test/csharp/InvalidCredentialsTest.cs (original) +++ activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/test/csharp/InvalidCredentialsTest.cs Wed Feb 27 21:22:06 2013 @@ -36,6 +36,7 @@ namespace Apache.NMS.Stomp.Test base.TearDown(); } +#if !NETCF // Maximum time to run is 20 seconds. [Test] //, Timeout(20000)] public void TestRestartInvalidCredentialsWithFailover() @@ -57,5 +58,6 @@ namespace Apache.NMS.Stomp.Test Assert.DoesNotThrow(() => { connection.Start(); }, "You may not have set the InvalidCredentials-AuthenticUser node in the nmsprovider-test.config file."); } } +#endif } }