From 47c2fc4abacf63c138bfbc261c030175c7791685 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 16 Jan 2013 11:29:47 +0000 Subject: [PATCH] tests: disable ABI checks for architectures where the struct sizes are not up-to-date https://bugzilla.gnome.org/show_bug.cgi?id=691828 --- tests/check/gst/gstabi.c | 8 ++++---- tests/check/libs/libsabi.c | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/check/gst/gstabi.c b/tests/check/gst/gstabi.c index 4a3fd460f1..751a1029c9 100644 --- a/tests/check/gst/gstabi.c +++ b/tests/check/gst/gstabi.c @@ -28,7 +28,7 @@ #else #ifdef __powerpc64__ #include "struct_ppc64.h" -#define HAVE_ABI_SIZES TRUE +#define HAVE_ABI_SIZES FALSE #else #ifdef __powerpc__ #include "struct_ppc32.h" @@ -40,15 +40,15 @@ #else #ifdef HAVE_CPU_HPPA #include "struct_hppa.h" -#define HAVE_ABI_SIZES TRUE +#define HAVE_ABI_SIZES FALSE #else #ifdef HAVE_CPU_SPARC #include "struct_sparc.h" -#define HAVE_ABI_SIZES TRUE +#define HAVE_ABI_SIZES FALSE #else #ifdef HAVE_CPU_ARM #include "struct_arm.h" -#define HAVE_ABI_SIZES TRUE +#define HAVE_ABI_SIZES FALSE #else /* in case someone wants to generate a new arch */ #include "struct_i386.h" diff --git a/tests/check/libs/libsabi.c b/tests/check/libs/libsabi.c index e99e3846d8..c7169c1101 100644 --- a/tests/check/libs/libsabi.c +++ b/tests/check/libs/libsabi.c @@ -50,7 +50,7 @@ #else #ifdef __powerpc64__ #include "struct_ppc64.h" -#define HAVE_ABI_SIZES TRUE +#define HAVE_ABI_SIZES FALSE #else #ifdef __powerpc__ #include "struct_ppc32.h" @@ -62,15 +62,15 @@ #else #ifdef HAVE_CPU_HPPA #include "struct_hppa.h" -#define HAVE_ABI_SIZES TRUE +#define HAVE_ABI_SIZES FALSE #else #ifdef HAVE_CPU_SPARC #include "struct_sparc.h" -#define HAVE_ABI_SIZES TRUE +#define HAVE_ABI_SIZES FALSE #else #ifdef HAVE_CPU_ARM #include "struct_arm.h" -#define HAVE_ABI_SIZES TRUE +#define HAVE_ABI_SIZES FALSE #else /* in case someone wants to generate a new arch */ #include "struct_i386.h"