Description: do not run tests on i386 because they fail.
Author: Alex Mestiashvili <alex@biotec.tu-dresden.de>
--- gmap.orig/Makefile.in
+++ gmap/Makefile.in
@@ -252,7 +252,14 @@
 top_build_prefix = @top_build_prefix@
 top_builddir = @top_builddir@
 top_srcdir = @top_srcdir@
-SUBDIRS = src util tests
+ARCH := $(shell getconf LONG_BIT)
+ifeq (64,$(ARCH))
+    SUBDIRS = src util tests
+endif
+ifeq (32,$(ARCH))
+    SUBDIRS = src util
+endif
+
 EXTRA_DIST = VERSION NOTICE config.site
 CLEANFILES = so_locations
 ACLOCAL_AMFLAGS = -I config
