mirror of
https://github.com/ziglang/zig.git
synced 2026-02-15 13:58:27 +00:00
std/os/windows/util.zig: SKIP instead of PASS on non-windows systems;
Tracking Issue #1318 ;
This commit is contained in:
parent
dde7eb45c5
commit
782043e2e6
@ -166,7 +166,7 @@ pub fn windowsUnloadDll(hModule: windows.HMODULE) void {
|
||||
}
|
||||
|
||||
test "InvalidDll" {
|
||||
if (builtin.os != builtin.Os.windows) return;
|
||||
if (builtin.os != builtin.Os.windows) return error.SkipZigTest;
|
||||
|
||||
const DllName = "asdf.dll";
|
||||
const allocator = std.debug.global_allocator;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user