-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Failing co19 ffi tests #45381
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
area-vm
Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.
library-ffi
Comments
if (sizeOf<IntPtr>() == 4) {
array[i] = 32768;
Expect.equals(-32768, array[i]);
array[i] = -32768;
Expect.equals(-32768, array[i]);
array[i] = -32769;
Expect.equals(32767, array[i]);
} else {
array[i] = 32768;
Expect.equals(32768, array[i]);
array[i] = -32769;
Expect.equals(-32769, array[i]);
} The tests are wrong, the boundary should not be at +-2^15, but at +-2^31 for 4 byte/32 bit platforms. |
Fixed by dart-lang/co19@11238c2 |
dart-bot
pushed a commit
that referenced
this issue
Mar 22, 2021
2021-03-22 [email protected] Fixes #1032. Change place where analyzer expects COMPILE_TIME_ERROR.UNCHECKED_USE_OF_NULLABLE_VALUE 2021-03-22 [email protected] Fixes #1027. Typo fixed 2021-03-22 [email protected] Fixes #1026. Missed experimental flag added 2021-03-22 [email protected] Fixes SDK issue #45381. Use 32-bit int boundaries for 32-bit systems 2021-03-19 [email protected] #1024. Tests that plays with the integers not representable in JS moved to separate files. These files will be skipped on JS Cq-Include-Trybots: dart/try:analyzer-nnbd-linux-release-try,dart2js-nnbd-linux-x64-chrome-try,ddc-nnbd-linux-release-chrome-try,front-end-nnbd-linux-release-x64-try,vm-kernel-nnbd-linux-debug-x64-try,vm-kernel-nnbd-linux-release-simarm64-try,vm-kernel-nnbd-linux-release-x64-try,vm-kernel-nnbd-mac-release-x64-try,vm-kernel-nnbd-win-release-x64-try,vm-kernel-precomp-nnbd-linux-debug-x64-try,vm-kernel-precomp-nnbd-linux-release-simarm64-try,vm-kernel-precomp-nnbd-linux-release-x64-try Change-Id: Idc63625a841f1f90b0cce5db9ca6add13e4d1192 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/192303 Reviewed-by: William Hesse <[email protected]> Commit-Queue: Alexander Thomas <[email protected]>
dart-bot
pushed a commit
that referenced
this issue
Mar 22, 2021
This reverts commit 03e8ddd. Reason for revert: Change to hooks does not work with Windows. Original change's description: > [co19] Roll co19 to ae818220b12ec9c2470519db2c7167cbe4745e12 > > 2021-03-22 [email protected] Fixes #1032. Change place where analyzer expects COMPILE_TIME_ERROR.UNCHECKED_USE_OF_NULLABLE_VALUE > 2021-03-22 [email protected] Fixes #1027. Typo fixed > 2021-03-22 [email protected] Fixes #1026. Missed experimental flag added > 2021-03-22 [email protected] Fixes SDK issue #45381. Use 32-bit int boundaries for 32-bit systems > 2021-03-19 [email protected] #1024. Tests that plays with the integers not representable in JS moved to separate files. These files will be skipped on JS > > Cq-Include-Trybots: dart/try:analyzer-nnbd-linux-release-try,dart2js-nnbd-linux-x64-chrome-try,ddc-nnbd-linux-release-chrome-try,front-end-nnbd-linux-release-x64-try,vm-kernel-nnbd-linux-debug-x64-try,vm-kernel-nnbd-linux-release-simarm64-try,vm-kernel-nnbd-linux-release-x64-try,vm-kernel-nnbd-mac-release-x64-try,vm-kernel-nnbd-win-release-x64-try,vm-kernel-precomp-nnbd-linux-debug-x64-try,vm-kernel-precomp-nnbd-linux-release-simarm64-try,vm-kernel-precomp-nnbd-linux-release-x64-try > Change-Id: Idc63625a841f1f90b0cce5db9ca6add13e4d1192 > Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/192303 > Reviewed-by: William Hesse <[email protected]> > Commit-Queue: Alexander Thomas <[email protected]> [email protected],[email protected] Change-Id: I5f66db541034377f5d68424073282080d13fd34b No-Presubmit: true No-Tree-Checks: true No-Try: true Cq-Include-Trybots: dart/try:analyzer-nnbd-linux-release-try Cq-Include-Trybots: dart2js-nnbd-linux-x64-chrome-try Cq-Include-Trybots: ddc-nnbd-linux-release-chrome-try Cq-Include-Trybots: front-end-nnbd-linux-release-x64-try Cq-Include-Trybots: vm-kernel-nnbd-linux-debug-x64-try Cq-Include-Trybots: vm-kernel-nnbd-linux-release-simarm64-try Cq-Include-Trybots: vm-kernel-nnbd-linux-release-x64-try Cq-Include-Trybots: vm-kernel-nnbd-mac-release-x64-try Cq-Include-Trybots: vm-kernel-nnbd-win-release-x64-try Cq-Include-Trybots: vm-kernel-precomp-nnbd-linux-debug-x64-try Cq-Include-Trybots: vm-kernel-precomp-nnbd-linux-release-simarm64-try Cq-Include-Trybots: vm-kernel-precomp-nnbd-linux-release-x64-try Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/192380 Reviewed-by: William Hesse <[email protected]>
dart-bot
pushed a commit
that referenced
this issue
Mar 22, 2021
This reverts commit 88ee333. Reason for revert: Hook added by mistake removed. Original change's description: > Revert "[co19] Roll co19 to ae818220b12ec9c2470519db2c7167cbe4745e12" > > This reverts commit 03e8ddd. > > Reason for revert: Change to hooks does not work with Windows. > > Original change's description: > > [co19] Roll co19 to ae818220b12ec9c2470519db2c7167cbe4745e12 > > > > 2021-03-22 [email protected] Fixes #1032. Change place where analyzer expects COMPILE_TIME_ERROR.UNCHECKED_USE_OF_NULLABLE_VALUE > > 2021-03-22 [email protected] Fixes #1027. Typo fixed > > 2021-03-22 [email protected] Fixes #1026. Missed experimental flag added > > 2021-03-22 [email protected] Fixes SDK issue #45381. Use 32-bit int boundaries for 32-bit systems > > 2021-03-19 [email protected] #1024. Tests that plays with the integers not representable in JS moved to separate files. These files will be skipped on JS > > > > Cq-Include-Trybots: dart/try:analyzer-nnbd-linux-release-try,dart2js-nnbd-linux-x64-chrome-try,ddc-nnbd-linux-release-chrome-try,front-end-nnbd-linux-release-x64-try,vm-kernel-nnbd-linux-debug-x64-try,vm-kernel-nnbd-linux-release-simarm64-try,vm-kernel-nnbd-linux-release-x64-try,vm-kernel-nnbd-mac-release-x64-try,vm-kernel-nnbd-win-release-x64-try,vm-kernel-precomp-nnbd-linux-debug-x64-try,vm-kernel-precomp-nnbd-linux-release-simarm64-try,vm-kernel-precomp-nnbd-linux-release-x64-try > > Change-Id: Idc63625a841f1f90b0cce5db9ca6add13e4d1192 > > Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/192303 > > Reviewed-by: William Hesse <[email protected]> > > Commit-Queue: Alexander Thomas <[email protected]> > > [email protected],[email protected] > > Change-Id: I5f66db541034377f5d68424073282080d13fd34b > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Cq-Include-Trybots: dart/try:analyzer-nnbd-linux-release-try > Cq-Include-Trybots: dart2js-nnbd-linux-x64-chrome-try > Cq-Include-Trybots: ddc-nnbd-linux-release-chrome-try > Cq-Include-Trybots: front-end-nnbd-linux-release-x64-try > Cq-Include-Trybots: vm-kernel-nnbd-linux-debug-x64-try > Cq-Include-Trybots: vm-kernel-nnbd-linux-release-simarm64-try > Cq-Include-Trybots: vm-kernel-nnbd-linux-release-x64-try > Cq-Include-Trybots: vm-kernel-nnbd-mac-release-x64-try > Cq-Include-Trybots: vm-kernel-nnbd-win-release-x64-try > Cq-Include-Trybots: vm-kernel-precomp-nnbd-linux-debug-x64-try > Cq-Include-Trybots: vm-kernel-precomp-nnbd-linux-release-simarm64-try > Cq-Include-Trybots: vm-kernel-precomp-nnbd-linux-release-x64-try > Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/192380 > Reviewed-by: William Hesse <[email protected]> # Not skipping CQ checks because this is a reland. Change-Id: Ie54fde2d92d1b2cdb3b70835f1f8c17e3c5ac477 Cq-Include-Trybots: dart/try:analyzer-nnbd-linux-release-try,dart2js-nnbd-linux-x64-chrome-try,ddc-nnbd-linux-release-chrome-try,front-end-nnbd-linux-release-x64-try,vm-kernel-nnbd-linux-debug-x64-try,vm-kernel-nnbd-linux-release-simarm64-try,vm-kernel-nnbd-linux-release-x64-try,vm-kernel-nnbd-mac-release-x64-try,vm-kernel-nnbd-win-release-x64-try,vm-kernel-precomp-nnbd-linux-debug-x64-try,vm-kernel-precomp-nnbd-linux-release-simarm64-try,vm-kernel-precomp-nnbd-linux-release-x64-try Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/192384 Reviewed-by: Alexander Thomas <[email protected]> Reviewed-by: William Hesse <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area-vm
Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.
library-ffi
The following tests are failing:
Assigned @dcharkes to triage whether the tests are wrong or the FFI implementation.
The text was updated successfully, but these errors were encountered: