Skip to content

Commit 9bc2797

Browse files
authored
Fix other.test_stdint_limits_wasm64 after #26689 (#26700)
Sadly the reason this slipped through is that we disabled the wasm64 tests recently to save some CI credits. Re-enabling `test-wasm64-misc` since its very quick.
1 parent 24da3cd commit 9bc2797

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1373,9 +1373,9 @@ workflows:
13731373
- test-core3:
13741374
requires:
13751375
- build-linux
1376-
#- test-wasm64-misc:
1377-
# requires:
1378-
# - build-linux
1376+
- test-wasm64-misc:
1377+
requires:
1378+
- build-linux
13791379
- test-wasm64-4gb:
13801380
requires:
13811381
- build-linux

test/other/test_stdint_limits.64.out

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ INTPTR_MIN: -9223372036854775808
1212
INTPTR_MAX: 9223372036854775807
1313
WCHAR_MIN: -2147483648
1414
WCHAR_MAX: 2147483647
15-
WINT_MIN: 0
16-
WINT_MAX: -1
15+
WINT_MIN: -2147483648
16+
WINT_MAX: 2147483647
1717
UINTPTR_MAX: 18446744073709551615
1818
SIZE_MAX: 18446744073709551615
1919
SSIZE_MAX: 9223372036854775807
@@ -35,8 +35,8 @@ INT_LEAST64_MIN: -9223372036854775808
3535
INT_LEAST64_MAX: 9223372036854775807
3636
INT_FAST8_MIN: -128
3737
INT_FAST8_MAX: 127
38-
INT_FAST16_MIN: -2147483648
39-
INT_FAST16_MAX: 2147483647
38+
INT_FAST16_MIN: -32768
39+
INT_FAST16_MAX: 32767
4040
INT_FAST32_MIN: -2147483648
4141
INT_FAST32_MAX: 2147483647
4242
INT_FAST64_MIN: -9223372036854775808
@@ -50,7 +50,7 @@ UINT_LEAST16_MAX: 65535
5050
UINT_LEAST32_MAX: 4294967295
5151
UINT_LEAST64_MAX: 18446744073709551615
5252
UINT_FAST8_MAX: 255
53-
UINT_FAST16_MAX: 4294967295
53+
UINT_FAST16_MAX: 65535
5454
UINT_FAST32_MAX: 4294967295
5555
UINT_FAST64_MAX: 18446744073709551615
5656
INT8_C: (d) 42

0 commit comments

Comments
 (0)