diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2010-08-01 19:41:33 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2010-08-01 19:41:33 +0000 |
commit | 06c72c718b0f30348f6c388f1e23f2c0edca02e5 (patch) | |
tree | 5729482396c5c6cd61557a100611acd9b41c59b5 /test | |
parent | 4aae259be18d31dc93ce5bc4ae1fcd04704ec250 (diff) | |
download | jackcess-06c72c718b0f30348f6c388f1e23f2c0edca02e5.tar.gz jackcess-06c72c718b0f30348f6c388f1e23f2c0edca02e5.zip |
enable more jet3 tests
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@477 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'test')
-rwxr-xr-x | test/data/V1997/overflowTestV1997.mdb | bin | 0 -> 65536 bytes | |||
-rwxr-xr-x | test/data/V1997/queryTestV1997.mdb | bin | 0 -> 96256 bytes | |||
-rw-r--r-- | test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java | 2 | ||||
-rw-r--r-- | test/src/java/com/healthmarketscience/jackcess/query/QueryTest.java | 2 |
4 files changed, 2 insertions, 2 deletions
diff --git a/test/data/V1997/overflowTestV1997.mdb b/test/data/V1997/overflowTestV1997.mdb Binary files differnew file mode 100755 index 0000000..bdfb60f --- /dev/null +++ b/test/data/V1997/overflowTestV1997.mdb diff --git a/test/data/V1997/queryTestV1997.mdb b/test/data/V1997/queryTestV1997.mdb Binary files differnew file mode 100755 index 0000000..d644432 --- /dev/null +++ b/test/data/V1997/queryTestV1997.mdb diff --git a/test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java b/test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java index 1f993ee..a6d9a17 100644 --- a/test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java +++ b/test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java @@ -741,7 +741,7 @@ public class DatabaseTest extends TestCase { public void testOverflow() throws Exception { - for (final TestDB testDB : TestDB.getSupportedForBasename(Basename.OVERFLOW)) { + for (final TestDB testDB : TestDB.getSupportedForBasename(Basename.OVERFLOW, true)) { Database mdb = open(testDB); Table table = mdb.getTable("Table1"); diff --git a/test/src/java/com/healthmarketscience/jackcess/query/QueryTest.java b/test/src/java/com/healthmarketscience/jackcess/query/QueryTest.java index 0ba3272..73d91b7 100644 --- a/test/src/java/com/healthmarketscience/jackcess/query/QueryTest.java +++ b/test/src/java/com/healthmarketscience/jackcess/query/QueryTest.java @@ -200,7 +200,7 @@ public class QueryTest extends TestCase public void testReadQueries() throws Exception { - for (final TestDB testDB : TestDB.getSupportedForBasename(Basename.QUERY)) { + for (final TestDB testDB : TestDB.getSupportedForBasename(Basename.QUERY, true)) { Map<String,String> expectedQueries = new HashMap<String,String>(); expectedQueries.put( "SelectQuery", multiline( |