Module: wine Branch: master Commit: 15495d19ef2645043f41567397c7d593efc859a6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=15495d19ef2645043f41567397...
Author: André Hentschel nerv@dawncrow.de Date: Sun Aug 9 14:07:09 2015 +0200
vcomp/tests: Make float test i386 only.
amd64 and arm don't pass floats on the stack
---
dlls/vcomp/tests/vcomp.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/dlls/vcomp/tests/vcomp.c b/dlls/vcomp/tests/vcomp.c index 7bfddc2..32a8619 100644 --- a/dlls/vcomp/tests/vcomp.c +++ b/dlls/vcomp/tests/vcomp.c @@ -419,6 +419,7 @@ static void CDECL fork_uintptr_cb(UINT_PTR a, UINT_PTR b, UINT_PTR c, UINT_PTR d ok(e == 5, "expected e == 5, got %p\n", (void *)e); }
+#ifdef __i386__ static void CDECL fork_float_cb(float a, float b, float c, float d, float e) { ok(1.4999 < a && a < 1.5001, "expected a == 1.5, got %f\n", a); @@ -427,6 +428,7 @@ static void CDECL fork_float_cb(float a, float b, float c, float d, float e) ok(4.4999 < d && d < 4.5001, "expected d == 4.5, got %f\n", d); ok(5.4999 < e && e < 5.5001, "expected e == 5.5, got %f\n", e); } +#endif
static void test_vcomp_fork(void) { @@ -453,13 +455,14 @@ static void test_vcomp_fork(void) p_vcomp_fork(TRUE, 5, fork_uintptr_cb, (UINT_PTR)1, (UINT_PTR)(MAXUINT_PTR - 2), (UINT_PTR)3, (UINT_PTR)(MAXUINT_PTR - 4), (UINT_PTR)5);
- if (sizeof(int) < sizeof(void *)) - skip("skipping float test on x86_64\n"); - else +#ifdef __i386__ { void (CDECL *func)(BOOL, int, void *, float, float, float, float, float) = (void *)p_vcomp_fork; func(TRUE, 5, fork_float_cb, 1.5f, 2.5f, 3.5f, 4.5f, 5.5f); } +#else + skip("skipping float test on non-x86\n"); +#endif
pomp_set_num_threads(max_threads); }