Return-Path: X-Original-To: apmail-jena-commits-archive@www.apache.org Delivered-To: apmail-jena-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 6FC6CD16C for ; Thu, 28 Jun 2012 11:05:51 +0000 (UTC) Received: (qmail 84476 invoked by uid 500); 28 Jun 2012 11:05:51 -0000 Delivered-To: apmail-jena-commits-archive@jena.apache.org Received: (qmail 84444 invoked by uid 500); 28 Jun 2012 11:05:51 -0000 Mailing-List: contact commits-help@jena.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jena.apache.org Delivered-To: mailing list commits@jena.apache.org Received: (qmail 84424 invoked by uid 99); 28 Jun 2012 11:05:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Jun 2012 11:05:50 +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; Thu, 28 Jun 2012 11:05:49 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 4899023889E7 for ; Thu, 28 Jun 2012 11:05:29 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1354917 - in /jena/trunk/jena-arq: ./ .classpath .project .settings/ pom.xml resources/ src/main/resources/arq-properties.xml src/test/java/com/hp/hpl/jena/sparql/expr/TS_Expr.java Date: Thu, 28 Jun 2012 11:05:28 -0000 To: commits@jena.apache.org From: andy@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120628110529.4899023889E7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: andy Date: Thu Jun 28 11:05:27 2012 New Revision: 1354917 URL: http://svn.apache.org/viewvc?rev=1354917&view=rev Log: Remove Eclipse files Added: jena/trunk/jena-arq/src/main/resources/arq-properties.xml - copied unchanged from r1353469, jena/trunk/jena-arq/resources/arq-properties.xml Removed: jena/trunk/jena-arq/.classpath jena/trunk/jena-arq/.project jena/trunk/jena-arq/.settings/ jena/trunk/jena-arq/resources/ Modified: jena/trunk/jena-arq/ (props changed) jena/trunk/jena-arq/pom.xml jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/expr/TS_Expr.java Propchange: jena/trunk/jena-arq/ ------------------------------------------------------------------------------ --- svn:ignore (original) +++ svn:ignore Thu Jun 28 11:05:27 2012 @@ -1,19 +1,9 @@ -checkCopyright.pl - tmp -distrib - -bldsrc - -bldbin - dwim DB -dist - classes reports @@ -22,6 +12,14 @@ build target -I - LOG + +.classpath + +.project + +.settings + +.externalToolBuilders + +maven-eclipse.xml Modified: jena/trunk/jena-arq/pom.xml URL: http://svn.apache.org/viewvc/jena/trunk/jena-arq/pom.xml?rev=1354917&r1=1354916&r2=1354917&view=diff ============================================================================== --- jena/trunk/jena-arq/pom.xml (original) +++ jena/trunk/jena-arq/pom.xml Thu Jun 28 11:05:27 2012 @@ -119,14 +119,19 @@ - false + true + com/hp/hpl/jena/sparql/ src/main/resources + + arq-properties.xml + - com/hp/hpl/jena/sparql/ - true - - resources + false + src/main/resources + + arq-properties.xml + Modified: jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/expr/TS_Expr.java URL: http://svn.apache.org/viewvc/jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/expr/TS_Expr.java?rev=1354917&r1=1354916&r2=1354917&view=diff ============================================================================== --- jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/expr/TS_Expr.java (original) +++ jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/expr/TS_Expr.java Thu Jun 28 11:05:27 2012 @@ -19,6 +19,8 @@ package com.hp.hpl.jena.sparql.expr; import junit.framework.JUnit4TestAdapter ; +import org.junit.AfterClass ; +import org.junit.BeforeClass ; import org.junit.runner.RunWith ; import org.junit.runners.Suite ; import org.junit.runners.Suite.SuiteClasses ; @@ -42,6 +44,25 @@ import org.junit.runners.Suite.SuiteClas public class TS_Expr { + // Expected warnings off. + private static boolean bVerboseWarnings ; + private static boolean bWarnOnUnknownFunction ; + + @BeforeClass public static void beforeClass() + { + bVerboseWarnings = NodeValue.VerboseWarnings ; + bWarnOnUnknownFunction = E_Function.WarnOnUnknownFunction ; + NodeValue.VerboseWarnings = false ; + E_Function.WarnOnUnknownFunction = false ; + } + + @AfterClass public static void afterClass() + { + NodeValue.VerboseWarnings = bVerboseWarnings ; + E_Function.WarnOnUnknownFunction = bWarnOnUnknownFunction ; + } + + public static junit.framework.Test suite() { return new JUnit4TestAdapter(TS_Expr.class); }