Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/PauloCampana/zig
Browse files Browse the repository at this point in the history
  • Loading branch information
PauloCampana committed Nov 11, 2024
2 parents c935a71 + 2d8c6bc commit ad7a00b
Showing 1 changed file with 74 additions and 0 deletions.
74 changes: 74 additions & 0 deletions ref.zig
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
const std = @import("std");

test {
// std.testing.refAllDeclsRecursive(std.c);
}

test {
// _ = &std.crypto.Certificate.Parsed.pubKeySigAlgo;
// _ = &std.crypto.ecc.P256.subMixed;
// _ = &std.crypto.ecc.P384.subMixed;
// _ = &std.crypto.ecc.Secp256k1.subMixed;

// _ = &std.Build.Step.Compile.dependsOnSystemLibrary;
// _ = &std.heap.alignPageAllocLen;
// _ = &std.process.changeCurDirC;

// _ = &std.fmt.Parser.peek;
// _ = &std.fmt.Parser.until;

// _ = &std.debug.UnwindError;
}

test {
// // windows
// _ = &std.debug.SelfInfo.Module.getDwarfInfoForAddress; // no such field debug_data

// // haiku
// _ = &std.c._kern_get_current_team; // got deleted?
// _ = &std.c._kern_open_dir;
// _ = &std.c._kern_read_dir;
// _ = &std.c._kern_read_stat;
// _ = &std.c._kern_rewind_dir;

// // darwin
// _ = &std.c.EXC.MASK; // invalid packed struct
// _ = &std.c.os_log_create; // extern fn with opaque
// _ = &std.c.os_log_type_enabled;
// _ = &std.c.os_signpost_enabled;
// _ = &std.c.os_signpost_id_generate;
// _ = &std.c.os_signpost_id_make_with_pointer;
// _ = &std.c.os_signpost_interval_begin;
// _ = &std.c.os_signpost_interval_end;

// // on systems where usize != u64
// _ = &std.Build.Fuzz.WebServer.coverageRun;
// _ = &std.Build.Fuzz.WebServer.run;
}

test {
// _ = &std.heap.StackFallbackAllocator(4096).allocator; // jan 2024
// _ = &std.hash.crc.Polynomial; // apr 2024
// _ = &std.hash.crc.Crc32WithPoly; // apr 2024
// _ = &std.hash.crc.Crc32SmallWithPoly; // apr 2024
// _ = &std.debug.getStderrMutex; // may 2024
// _ = &std.os.windows.TCHAR; // may 2024
// _ = &std.os.windows.LPTSTR; // may 2024
// _ = &std.os.windows.LPCTSTR; // may 2024
// _ = &std.os.windows.PTSTR; // may 2024
// _ = &std.os.windows.PCTSTR; // may 2024
// _ = &std.fs.Dir.writeFile2; // may 2024
// _ = &std.zig.CrossTarget; // jun 2024
// _ = &std.unicode.utf16leToUtf8Alloc; // jun 2024
// _ = &std.unicode.utf16leToUtf8AllocZ; // jun 2024
// _ = &std.unicode.utf16leToUtf8; // jun 2024
// _ = &std.unicode.utf8ToUtf16LeWithNull; // jun 2024
// _ = &std.unicode.fmtUtf16le; // jun 2024
// _ = &std.mem.tokenize; // jun 2024
// _ = &std.mem.split; // jun 2024
// _ = &std.mem.splitBackwards; // jun 2024
// _ = &std.fs.MAX_PATH_BYTES; // jun 2024
// _ = &std.crypto.kem.ml_kem_01; // aug 2024
// _ = &std.valgrind.callgrind.CallgrindClientRequest; // aug 2024
// _ = &std.valgrind.memcheck.MemCheckClientRequest; // aug 2024
}

0 comments on commit ad7a00b

Please sign in to comment.