Skip to content

Commit

Permalink
568417: Build changes for migration of MAT JIPP to new CI infrastructure
Browse files Browse the repository at this point in the history
Try solving OOM error on running tests in new CI

Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=568417

Change-Id: Ibdfa14e72b02a23e6f0c03e94d2b1b287ac613d2
  • Loading branch information
ajohnson1 committed Nov 1, 2020
1 parent fa0ce0c commit feda83c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2015, 2018 IBM Corporation
* Copyright (c) 2015, 2020 IBM Corporation
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
Expand All @@ -12,6 +12,7 @@

import static org.hamcrest.CoreMatchers.equalTo;
import static org.hamcrest.CoreMatchers.notNullValue;
import static org.hamcrest.core.IsNot.not;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.number.OrderingComparison.greaterThan;
import static org.junit.Assume.assumeThat;
Expand Down Expand Up @@ -218,6 +219,7 @@ public static Collection<Object[]> data3() throws SnapshotException, IOException
@Test
public void testCollections() throws SnapshotException
{
assumeThat("OOM error in new CI build", classname, not(equalTo("java.util.ArrayList")));
switch (type)
{
case 1:
Expand Down

0 comments on commit feda83c

Please sign in to comment.