Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1373,9 +1373,9 @@ workflows:
- test-core3:
requires:
- build-linux
#- test-wasm64-misc:
# requires:
# - build-linux
- test-wasm64-misc:
requires:
- build-linux
- test-wasm64-4gb:
requires:
- build-linux
Expand Down
10 changes: 5 additions & 5 deletions test/other/test_stdint_limits.64.out
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ INTPTR_MIN: -9223372036854775808
INTPTR_MAX: 9223372036854775807
WCHAR_MIN: -2147483648
WCHAR_MAX: 2147483647
WINT_MIN: 0
WINT_MAX: -1
WINT_MIN: -2147483648
WINT_MAX: 2147483647
UINTPTR_MAX: 18446744073709551615
SIZE_MAX: 18446744073709551615
SSIZE_MAX: 9223372036854775807
Expand All @@ -35,8 +35,8 @@ INT_LEAST64_MIN: -9223372036854775808
INT_LEAST64_MAX: 9223372036854775807
INT_FAST8_MIN: -128
INT_FAST8_MAX: 127
INT_FAST16_MIN: -2147483648
INT_FAST16_MAX: 2147483647
INT_FAST16_MIN: -32768
INT_FAST16_MAX: 32767
INT_FAST32_MIN: -2147483648
INT_FAST32_MAX: 2147483647
INT_FAST64_MIN: -9223372036854775808
Expand All @@ -50,7 +50,7 @@ UINT_LEAST16_MAX: 65535
UINT_LEAST32_MAX: 4294967295
UINT_LEAST64_MAX: 18446744073709551615
UINT_FAST8_MAX: 255
UINT_FAST16_MAX: 4294967295
UINT_FAST16_MAX: 65535
UINT_FAST32_MAX: 4294967295
UINT_FAST64_MAX: 18446744073709551615
INT8_C: (d) 42
Expand Down
Loading