|
From: <sv...@va...> - 2014-03-19 15:44:30
|
Author: dejanj
Date: Wed Mar 19 15:44:19 2014
New Revision: 13881
Log:
mips: Disable test on mips32/64 big-endian platforms.
Modified:
trunk/memcheck/tests/test-plo-yes.vgtest
trunk/tests/mips_features.c
Modified: trunk/memcheck/tests/test-plo-yes.vgtest
==============================================================================
--- trunk/memcheck/tests/test-plo-yes.vgtest (original)
+++ trunk/memcheck/tests/test-plo-yes.vgtest Wed Mar 19 15:44:19 2014
@@ -1,3 +1,3 @@
-prereq: test ! `../../tests/arch_test ppc32` && ! `../../tests/arch_test ppc64` && ! `../../tests/arch_test s390x`
+prereq: test ! `../../tests/arch_test ppc32` && ! `../../tests/arch_test ppc64` && ! `../../tests/arch_test s390x` && ! `../../tests/mips_features mips-be`
prog: test-plo
vgopts: -q --partial-loads-ok=yes
Modified: trunk/tests/mips_features.c
==============================================================================
--- trunk/tests/mips_features.c (original)
+++ trunk/tests/mips_features.c Wed Mar 19 15:44:19 2014
@@ -79,6 +79,12 @@
} else{
return FEATURE_NOT_PRESENT;
}
+ } else if (strcmp(feature, "mips-be") == 0) {
+#if defined (_MIPSEB)
+ return FEATURE_PRESENT;
+#else
+ return FEATURE_NOT_PRESENT;
+#endif
} else {
return UNRECOGNISED_FEATURE;
}
|