Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 90B4392ED for ; Fri, 13 Jul 2012 11:21:09 +0000 (UTC) Received: (qmail 82326 invoked by uid 500); 13 Jul 2012 11:21:09 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 81971 invoked by uid 500); 13 Jul 2012 11:21:06 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 81930 invoked by uid 99); 13 Jul 2012 11:21:04 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Jul 2012 11:21:04 +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; Fri, 13 Jul 2012 11:21:02 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 875FD23888EA for ; Fri, 13 Jul 2012 11:20:42 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1361164 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/SparseRealVectorTest.java Date: Fri, 13 Jul 2012 11:20:42 -0000 To: commits@commons.apache.org From: erans@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120713112042.875FD23888EA@eris.apache.org> Author: erans Date: Fri Jul 13 11:20:42 2012 New Revision: 1361164 URL: http://svn.apache.org/viewvc?rev=1361164&view=rev Log: Two failing tests temporarily disabled until MATH-821 is fixed. Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/SparseRealVectorTest.java Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/SparseRealVectorTest.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/SparseRealVectorTest.java?rev=1361164&r1=1361163&r2=1361164&view=diff ============================================================================== --- commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/SparseRealVectorTest.java (original) +++ commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/SparseRealVectorTest.java Fri Jul 13 11:20:42 2012 @@ -97,4 +97,22 @@ public class SparseRealVectorTest extend u.ebeMultiply(v1); u.ebeDivide(v1); } + + /** + * XXX This test is disabled because it currently fails. + * The bug must still be fixed in the sparse vector implementation. + * When this is done, this override should be deleted. + */ + @Test + @Override + public void testMap() {} + + /** + * XXX This test is disabled because it currently fails. + * The bug must still be fixed in the sparse vector implementation. + * When this is done, this override should be deleted. + */ + @Test + @Override + public void testMapToSelf() {} }