authorgravatar for kt@connectfree.co.jpkristopher tate <kt@connectfree.co.jp> 2018-08-03 02:16:49+09:00
committergravatar for kt@connectfree.co.jpkristopher tate <kt@connectfree.co.jp> 2018-08-03 02:16:49+09:00
log782043e2e66ab5833cb20dc6e787b87eb84165f8
tree1e58635ac98bb1c4f600cbb7a785cb877dd83f90
parentdde7eb45c51dd96242a6b028eb1912ee6ffa2c55

std/os/windows/util.zig: SKIP instead of PASS on non-windows systems;

Tracking Issue #1318 ;

1 files changed, 1 insertions(+), 1 deletions(-)

std/os/windows/util.zig+1-1
...@@ -166,7 +166,7 @@ pub fn windowsUnloadDll(hModule: windows.HMODULE) void {...@@ -166,7 +166,7 @@ pub fn windowsUnloadDll(hModule: windows.HMODULE) void {
166}166}
167167
168test "InvalidDll" {168test "InvalidDll" {
169 if (builtin.os != builtin.Os.windows) return;169 if (builtin.os != builtin.Os.windows) return error.SkipZigTest;
170170
171 const DllName = "asdf.dll";171 const DllName = "asdf.dll";
172 const allocator = std.debug.global_allocator;172 const allocator = std.debug.global_allocator;