From: Michael R. Crusoe <crusoe@debian.org>
Subject: Skip Intel tests on non-Intel
--- a/src/test/java/picard/IntelInflaterDeflaterLoadTest.java
+++ b/src/test/java/picard/IntelInflaterDeflaterLoadTest.java
@@ -56,6 +56,10 @@
             throw new SkipException(componentName + " is not available on this platform");
         }
 
+	if (SystemUtils.OS_ARCH != null && !SystemUtils.OS_ARCH.equals("amd64")) {
+            throw new SkipException(componentName + " is not available for this architecture");
+        }
+
         if (SystemUtils.OS_ARCH != null && SystemUtils.OS_ARCH.equals("ppc64le")) {
             throw new SkipException(componentName + " is not available for this architecture");
         }
