Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f0b32b8d
Commit
f0b32b8d
authored
Aug 09, 2015
by
André Hentschel
Committed by
Alexandre Julliard
Aug 17, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vcomp/tests: Comment out architecture dependent tests (shift count overflow).
Shifting more than variable width adds zeros on ARM to fill up.
parent
a9363698
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
vcomp.c
dlls/vcomp/tests/vcomp.c
+3
-3
No files found.
dlls/vcomp/tests/vcomp.c
View file @
f0b32b8d
...
@@ -1286,10 +1286,10 @@ static void test_atomic_integer32(void)
...
@@ -1286,10 +1286,10 @@ static void test_atomic_integer32(void)
{
p_vcomp_atomic_mul_i4
,
0x11223344
,
-
0x77665544
,
0xecccdf0
},
{
p_vcomp_atomic_mul_i4
,
0x11223344
,
-
0x77665544
,
0xecccdf0
},
{
p_vcomp_atomic_or_i4
,
0x11223344
,
0x77665544
,
0x77667744
},
{
p_vcomp_atomic_or_i4
,
0x11223344
,
0x77665544
,
0x77667744
},
{
p_vcomp_atomic_shl_i4
,
0x11223344
,
3
,
-
0x76ee65e0
},
{
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_shl_i4
,
-
0x11223344
,
3
,
0x76ee65e0
},
{
p_vcomp_atomic_shr_i4
,
0x11223344
,
3
,
0x2244668
},
{
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_shr_i4
,
-
0x11223344
,
3
,
-
0x2244669
},
{
p_vcomp_atomic_sub_i4
,
0x11223344
,
0x77665544
,
-
0x66442200
},
{
p_vcomp_atomic_sub_i4
,
0x11223344
,
0x77665544
,
-
0x66442200
},
{
p_vcomp_atomic_xor_i4
,
0x11223344
,
0x77665544
,
0x66446600
},
{
p_vcomp_atomic_xor_i4
,
0x11223344
,
0x77665544
,
0x66446600
},
...
@@ -1304,7 +1304,7 @@ static void test_atomic_integer32(void)
...
@@ -1304,7 +1304,7 @@ static void test_atomic_integer32(void)
{
p_vcomp_atomic_div_ui4
,
0x77665544
,
0x11223344
,
6
},
{
p_vcomp_atomic_div_ui4
,
0x77665544
,
0x11223344
,
6
},
{
p_vcomp_atomic_div_ui4
,
0x77665544
,
0xeeddccbc
,
0
},
{
p_vcomp_atomic_div_ui4
,
0x77665544
,
0xeeddccbc
,
0
},
{
p_vcomp_atomic_shr_ui4
,
0x11223344
,
3
,
0x2244668
},
{
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
},
{
p_vcomp_atomic_shr_ui4
,
0xeeddccbc
,
3
,
0x1ddbb997
},
};
};
int
i
;
int
i
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment