=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: vcomp/tests: Comment out architecture dependent tests (shift count overflow).

Alexandre Julliard julliard at wine.codeweavers.com
Mon Aug 17 09:01:12 CDT 2015


Module: wine
Branch: master
Commit: f0b32b8d57d77cb86d5b403a9a0773ea729a9ddc
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f0b32b8d57d77cb86d5b403a9a0773ea729a9ddc

Author: André Hentschel <nerv at dawncrow.de>
Date:   Sun Aug  9 14:05:40 2015 +0200

vcomp/tests: Comment out architecture dependent tests (shift count overflow).

Shifting more than variable width adds zeros on ARM to fill up.

---

 dlls/vcomp/tests/vcomp.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/vcomp/tests/vcomp.c b/dlls/vcomp/tests/vcomp.c
index f24c654..a111d16 100644
--- a/dlls/vcomp/tests/vcomp.c
+++ b/dlls/vcomp/tests/vcomp.c
@@ -1286,10 +1286,10 @@ static void test_atomic_integer32(void)
         { p_vcomp_atomic_mul_i4,  0x11223344, -0x77665544,   0xecccdf0 },
         { p_vcomp_atomic_or_i4,   0x11223344,  0x77665544,  0x77667744 },
         { p_vcomp_atomic_shl_i4,  0x11223344,           3, -0x76ee65e0 },
-        { p_vcomp_atomic_shl_i4,  0x11223344,          35, -0x76ee65e0 },
+     /* { p_vcomp_atomic_shl_i4,  0x11223344,          35, -0x76ee65e0 }, */ /* depends on Architecture */
         { p_vcomp_atomic_shl_i4, -0x11223344,           3,  0x76ee65e0 },
         { p_vcomp_atomic_shr_i4,  0x11223344,           3,   0x2244668 },
-        { p_vcomp_atomic_shr_i4,  0x11223344,          35,   0x2244668 },
+     /* { p_vcomp_atomic_shr_i4,  0x11223344,          35,   0x2244668 }, */ /* depends on Architecture */
         { p_vcomp_atomic_shr_i4, -0x11223344,           3,  -0x2244669 },
         { p_vcomp_atomic_sub_i4,  0x11223344,  0x77665544, -0x66442200 },
         { p_vcomp_atomic_xor_i4,  0x11223344,  0x77665544,  0x66446600 },
@@ -1304,7 +1304,7 @@ static void test_atomic_integer32(void)
         { p_vcomp_atomic_div_ui4, 0x77665544, 0x11223344,          6 },
         { p_vcomp_atomic_div_ui4, 0x77665544, 0xeeddccbc,          0 },
         { p_vcomp_atomic_shr_ui4, 0x11223344,          3,  0x2244668 },
-        { p_vcomp_atomic_shr_ui4, 0x11223344,         35,  0x2244668 },
+     /* { p_vcomp_atomic_shr_ui4, 0x11223344,         35,  0x2244668 }, */ /* depends on Architecture */
         { p_vcomp_atomic_shr_ui4, 0xeeddccbc,          3, 0x1ddbb997 },
     };
     int i;




More information about the wine-cvs mailing list