Skip to content

Commit

Permalink
Move lw5 classes to ValueTypeTestClasses
Browse files Browse the repository at this point in the history
Signed-off-by: Theresa Mammarella <[email protected]>
  • Loading branch information
theresa-m committed Nov 30, 2023
1 parent b014f61 commit fcc53b9
Show file tree
Hide file tree
Showing 5 changed files with 1,209 additions and 1,209 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
package org.openj9.test.lworld;

import java.lang.reflect.Array;
import static org.openj9.test.lworld.ValueTypeTests.*;
import static org.openj9.test.lworld.ValueTypeTestClasses.*;

public class DDRBackfillLayoutTest {
Expand Down Expand Up @@ -66,12 +65,12 @@ private static void createAndCheckValueType() throws Throwable {
new ObjectBackfill(defaultLong, defaultObject);

ValueTypeDoubleLong doubleLongInstance = new ValueTypeDoubleLong(
new ValueLong(ValueTypeTests.defaultLong), ValueTypeTests.defaultLongNew);
new ValueLong(defaultLong), defaultLongNew);
ValueTypeQuadLong quadLongInstance = new ValueTypeQuadLong(doubleLongInstance,
new ValueLong(ValueTypeTests.defaultLongNew2), ValueTypeTests.defaultLongNew3);
new ValueLong(defaultLongNew2), defaultLongNew3);
ValueTypeDoubleQuadLong doubleQuadLongInstance =
new ValueTypeDoubleQuadLong(quadLongInstance, doubleLongInstance,
new ValueLong(ValueTypeTests.defaultLongNew4), ValueTypeTests.defaultLongNew5);
new ValueLong(defaultLongNew4), defaultLongNew5);

FlatUnAlignedSingleBackfill2![] flatUnAlignedSingleBackfill2Array =
new FlatUnAlignedSingleBackfill2![3];
Expand All @@ -80,7 +79,7 @@ private static void createAndCheckValueType() throws Throwable {
ValueTypeQuadLong[] quadLongArray = new ValueTypeQuadLong[3];
quadLongArray[1] = quadLongInstance;

checkObject(flatSingleBackfillInstance,
ValueTypeTests.checkObject(flatSingleBackfillInstance,
objectBackfillInstance,
flatUnAlignedSingleBackfillInstance,
flatUnAlignedSingleBackfill2Instance,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import java.lang.invoke.MethodType;
import java.lang.reflect.Array;

import static org.openj9.test.lworld.ValueTypeTests.*;
import static org.openj9.test.lworld.ValueTypeTestClasses.*;

public class DDRValueTypeTest {
public static void main(String[] args) {
Expand All @@ -51,7 +51,7 @@ private static void createAndCheckValueType() throws Throwable {
array[0] = assortedValueWithSingleAlignment;
array[1] = assortedValueWithSingleAlignmentAlt;

checkObject(assortedValueWithSingleAlignment,
ValueTypeTests.checkObject(assortedValueWithSingleAlignment,
assortedValueWithSingleAlignmentAlt,
array
);
Expand Down
Loading

0 comments on commit fcc53b9

Please sign in to comment.