diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-03-22 02:04:48 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-22 02:04:48 -0700 |
| commit | d8bb139da44d9140fd8992608fcbbddcd1816889 (patch) | |
| tree | a6277199a72ae9ae6265c7b2dd8274d8e54d220a /lib/std/os | |
| parent | a2651cbc829d44df4c3773037598b30e8cf0c4da (diff) | |
| parent | 90c94a2f0b7ce71aae1b69cf9e7b517c3a771906 (diff) | |
| download | zig-d8bb139da44d9140fd8992608fcbbddcd1816889.tar.gz zig-d8bb139da44d9140fd8992608fcbbddcd1816889.zip | |
Merge pull request #19390 from ziglang/valgrind
make the behavior tests run almost valgrind clean
Diffstat (limited to 'lib/std/os')
| -rw-r--r-- | lib/std/os/windows.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/std/os/windows.zig b/lib/std/os/windows.zig index 6ea7611fd7..1c0b7d9d80 100644 --- a/lib/std/os/windows.zig +++ b/lib/std/os/windows.zig @@ -1379,7 +1379,7 @@ pub fn GetFinalPathNameByHandle( } } -test "GetFinalPathNameByHandle" { +test GetFinalPathNameByHandle { if (builtin.os.tag != .windows) return; @@ -2601,7 +2601,7 @@ pub fn ntToWin32Namespace(path: []const u16) !PathSpace { } } -test "ntToWin32Namespace" { +test ntToWin32Namespace { const L = std.unicode.utf8ToUtf16LeStringLiteral; try testNtToWin32Namespace(L("UNC"), L("\\??\\UNC")); @@ -3539,7 +3539,7 @@ pub const GUID = extern struct { } }; -test "GUID" { +test GUID { try std.testing.expectEqual( GUID{ .Data1 = 0x01234567, |
