v2 / vlib / v / tests / windows_system_info_test.v
8 lines · 7 sloc · 169 bytes · 58941fe0c1fb802b9dd353ce0a46e077ae2a11ae
Raw
1// vtest build: windows
2
3fn test_windows_system_info() {
4 x := C.SYSTEM_INFO{}
5 C.GetSystemInfo(&x)
6 assert x.wProcessorArchitecture != 0
7 assert x.dwPageSize == 4096
8}
9