diff options
| author | kristopher tate <kt@connectfree.co.jp> | 2018-08-03 02:16:49 +0900 |
|---|---|---|
| committer | kristopher tate <kt@connectfree.co.jp> | 2018-08-03 02:16:49 +0900 |
| commit | 782043e2e66ab5833cb20dc6e787b87eb84165f8 (patch) | |
| tree | 1e58635ac98bb1c4f600cbb7a785cb877dd83f90 | |
| parent | dde7eb45c51dd96242a6b028eb1912ee6ffa2c55 (diff) | |
| download | zig-782043e2e66ab5833cb20dc6e787b87eb84165f8.tar.gz zig-782043e2e66ab5833cb20dc6e787b87eb84165f8.zip | |
std/os/windows/util.zig: SKIP instead of PASS on non-windows systems;
Tracking Issue #1318 ;
| -rw-r--r-- | std/os/windows/util.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/os/windows/util.zig b/std/os/windows/util.zig index dda9ce7a8b..c9d2c3c3e6 100644 --- a/std/os/windows/util.zig +++ b/std/os/windows/util.zig @@ -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; |
