XFAIL sqlite3 tests that use temp tables From: David Rothenberger The sqlite3 library (3.7.16.2-1) has a known problem with temporary tables, and the wc-queries-test tests rely on this, so XFAIL them. --- subversion/tests/libsvn_wc/wc-queries-test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subversion/tests/libsvn_wc/wc-queries-test.c b/subversion/tests/libsvn_wc/wc-queries-test.c index 74ad439..16dcdbc 100644 --- a/subversion/tests/libsvn_wc/wc-queries-test.c +++ b/subversion/tests/libsvn_wc/wc-queries-test.c @@ -886,11 +886,11 @@ struct svn_test_descriptor_t test_funcs[] = SVN_TEST_NULL, SVN_TEST_PASS2(test_sqlite_version, "sqlite up-to-date"), - SVN_TEST_PASS2(test_parsable, + SVN_TEST_XFAIL2(test_parsable, "queries are parsable"), - SVN_TEST_PASS2(test_query_expectations, + SVN_TEST_XFAIL2(test_query_expectations, "test query expectations"), - SVN_TEST_PASS2(test_schema_statistics, + SVN_TEST_XFAIL2(test_schema_statistics, "test schema statistics"), SVN_TEST_NULL };