1 /* 2 * PROJECT: ReactOS Kernel 3 * LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later) 4 * PURPOSE: Test for NtQuerySystemInformation 5 * COPYRIGHT: Copyright 2019 Thomas Faber (thomas.faber@reactos.org) 6 */ 7 8 #include "precomp.h" 9 10 START_TEST(NtQuerySystemInformation) 11 { 12 NTSTATUS Status; 13 14 Status = NtQuerySystemInformation(0, NULL, 0, NULL); 15 ok_hex(Status, STATUS_INFO_LENGTH_MISMATCH); 16 17 Status = NtQuerySystemInformation(0x80000000, NULL, 0, NULL); 18 ok_hex(Status, STATUS_INVALID_INFO_CLASS); 19 } 20