Files
MSYS2-packages/subversion/16-XFAIL_sqlite3_temp_table_tests.patch
2014-11-05 23:30:55 +03:00

30 lines
1.1 KiB
Diff

XFAIL sqlite3 tests that use temp tables
From: David Rothenberger <daveroth@acm.org>
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
};