Skip to content

Commit 35240cf

Browse files
committed
Fix build on Apple silicon
1 parent 50d1774 commit 35240cf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • openam-tools/openam-installtools/src/test/java/com/sun/identity/install/tools/util

openam-tools/openam-installtools/src/test/java/com/sun/identity/install/tools/util/OSCheckerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class OSCheckerTest {
2828

2929
private static final String OS_NAME = System.getProperty("os.name");
3030
private static final List<String> ARCHITECTURES = Arrays.asList(
31-
"i386", "i686", "x86", "x86_64", "amd64", "PowerPC", "ppc", "ppc64", "sparc");
31+
"i386", "i686", "x86", "x86_64", "amd64", "aarch64", "PowerPC", "ppc", "ppc64", "sparc");
3232

3333
@Test
3434
public void testIsUnixOrWindows() {
@@ -90,7 +90,7 @@ public void testAtLeast() {
9090
assertFalse(atleast(OS_NAME, 2, 1));
9191
assertFalse(atleast("iOS", 1, 0));
9292
}
93-
93+
9494
@Test
9595
public void testArchitecture() {
9696
int foundArch = 0;

0 commit comments

Comments
 (0)