Skip to content

Commit

Permalink
QA-MONDRIAN: fix brekage by change 10097
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 10110]
  • Loading branch information
Khanh Vu committed Oct 26, 2007
1 parent 7261b9f commit 4959e3b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion testsrc/main/mondrian/test/Main.java
Expand Up @@ -249,7 +249,11 @@ public static Test suite() throws Exception {

suite.addTestSuite(FastBatchingCellReaderTest.class);
suite.addTestSuite(SqlQueryTest.class);
suite.addTest(BatchedFillTest.suite());
if (MondrianProperties.instance().EnableNativeCrossJoin.get()) {
suite.addTest(BatchedFillTest.suite());
} else {
logger.warn("skipping BatchedFillTests");
}
}
if (testName != null && !testName.equals("")) {
// Filter the suite, so that only tests whose names match
Expand Down

0 comments on commit 4959e3b

Please sign in to comment.