From: <tho...@us...> - 2013-12-04 18:25:30
|
Revision: 7609 http://bigdata.svn.sourceforge.net/bigdata/?rev=7609&view=rev Author: thompsonbry Date: 2013-12-04 18:25:23 +0000 (Wed, 04 Dec 2013) Log Message: ----------- Forgot to actually remove the knownBadTests from the SPARQL test suite based on the BigdataStatics.runKnownBadTests boolean option. This commit fixes that oversight. Modified Paths: -------------- branches/BIGDATA_RELEASE_1_3_0/bigdata-sails/src/test/com/bigdata/rdf/sail/tck/BigdataSparqlTest.java Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata-sails/src/test/com/bigdata/rdf/sail/tck/BigdataSparqlTest.java =================================================================== --- branches/BIGDATA_RELEASE_1_3_0/bigdata-sails/src/test/com/bigdata/rdf/sail/tck/BigdataSparqlTest.java 2013-12-04 16:09:51 UTC (rev 7608) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata-sails/src/test/com/bigdata/rdf/sail/tck/BigdataSparqlTest.java 2013-12-04 18:25:23 UTC (rev 7609) @@ -172,16 +172,11 @@ if (hideDatasetTests) suite1 = filterOutTests(suite1, "dataset"); - /* - * FIXME Remove this when implementing property paths. - * - * @see https://sourceforge.net/apps/trac/bigdata/ticket/495 (SPARQL 1.1 - * Property Paths) - */ -// suite1 = filterOutTests(suite1, "property-paths"); - suite1 = filterOutTests(suite1, badTests); - + + if (!BigdataStatics.runKnownBadTests) + suite1 = filterOutTests(suite1, knownBadTests); + /** * BSBM BI use case query 5 * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |