Skip to content

Commit dccb6c0

Browse files
committed
Mark numeric-types.rs as 64-bit only for now
This is to unblock the tree, a proper fix will need to be investigated. I think the debuginfo test suite supports revisions, however debugger directives do not respect such revisions, which is problematic. It's that 32-bit and 64-bit msvc of course have different integer widths for `isize` and `usize`, meaning their underlying integer is different and thus printed differently.
1 parent e70df09 commit dccb6c0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/debuginfo/numeric-types.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@
33
//@ ignore-windows-gnu: #128981
44

55
// Note: u128 visualization was not supported in 10.0.22621.3233 but was fixed in 10.0.26100.2161.
6-
// FIXME(jieyouxu): triple-check if this annotation works properly in CI, because it seems to
7-
// ignore the test locally for me.
6+
7+
// FIXME(#133107): this is temporarily marked as `only-64bit` because of course 32-bit msvc has
8+
// a different integer width and thus underlying integer type display. Only marked as such to
9+
// unblock the tree.
10+
//@ only-64bit
811
//@ min-cdb-version: 10.0.26100.2161
912

1013
// Tests the visualizations for `NonZero<T>`, `Wrapping<T>` and

0 commit comments

Comments
 (0)