Skip to content

Commit

Permalink
fix wrong validation results
Browse files Browse the repository at this point in the history
Signed-off-by: Su Yihan <[email protected]>
  • Loading branch information
yviansu committed Jan 16, 2024
1 parent 5209b26 commit 6406f48
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tools/validate/wamr/validation.json
Original file line number Diff line number Diff line change
Expand Up @@ -4599,27 +4599,27 @@
{
"name": "xor",
"args": [],
"result": "4656\n4294967294\n4656"
"result": "4656\n-2\n4656"
},
{
"name": "and",
"args": [],
"result": "4\n4294967295\n4"
"result": "4\n-1\n4"
},
{
"name": "or",
"args": [],
"result": "4660\n4294967295\n4660"
"result": "4660\n-1\n4660"
},
{
"name": "shl",
"args": [],
"result": "-2\n4294967294\n8"
"result": "-2\n-2\n8"
},
{
"name": "shr",
"args": [],
"result": "1073741823\n1073741824\n34359738367\n34359738367\n2\n2147483648"
"result": "1073741823\n1073741824\n-1\n2147483647\n2\n2147483648"
}
]
},
Expand Down

0 comments on commit 6406f48

Please sign in to comment.