equal
deleted
inserted
replaced
38 |
38 |
39 public class SABase extends CiReplayBase { |
39 public class SABase extends CiReplayBase { |
40 private static final String REPLAY_FILE_COPY = "replay_vm.txt"; |
40 private static final String REPLAY_FILE_COPY = "replay_vm.txt"; |
41 |
41 |
42 public static void main(String args[]) throws Exception { |
42 public static void main(String args[]) throws Exception { |
43 if (!Platform.shouldSAAttach()) { |
|
44 System.out.println("SA attach not expected to work - test skipped."); |
|
45 return; |
|
46 } |
|
47 |
|
48 checkSetLimits(); |
43 checkSetLimits(); |
49 new SABase(args).runTest(/* needCoreDump = */ true, args); |
44 new SABase(args).runTest(/* needCoreDump = */ true, args); |
50 } |
45 } |
51 |
46 |
52 public SABase(String[] args) { |
47 public SABase(String[] args) { |