01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tctest;
06:
07: //import com.tc.util.runtime.Vm;
08:
09: public class LinkedBlockingQueueCrashTest extends TransparentTestBase {
10:
11: private static final int NODE_COUNT = 8;
12:
13: public LinkedBlockingQueueCrashTest() {
14: //if (Vm.isIBM()) {
15: // disableAllUntil("2007-08-30");
16: //}
17: }
18:
19: public void doSetUp(TransparentTestIface t) throws Exception {
20: t.getTransparentAppConfig().setClientCount(NODE_COUNT);
21: t.initializeTestRunner();
22: }
23:
24: protected Class getApplicationClass() {
25: return LinkedBlockingQueueCrashTestApp.class;
26: }
27:
28: protected boolean canRunCrash() {
29: return true;
30: }
31:
32: }
|