mirror of
https://github.com/ziglang/zig.git
synced 2024-11-15 00:26:57 +00:00
3671582c15
The purpose of this is: * Only one way to do things * Changing a function with void return type to return a possible error becomes a 1 character change, subtly encouraging people to use errors. See #632 Here are some imperfect sed commands for performing this update: remove arrow: ``` sed -i 's/\(\bfn\b.*\)-> /\1/g' $(find . -name "*.zig") ``` add void: ``` sed -i 's/\(\bfn\b.*\))\s*{/\1) void {/g' $(find ../ -name "*.zig") ``` Some cleanup may be necessary, but this should do the bulk of the work.
21 lines
896 B
Zig
21 lines
896 B
Zig
const tests = @import("tests.zig");
|
|
const builtin = @import("builtin");
|
|
const is_windows = builtin.os == builtin.Os.windows;
|
|
|
|
pub fn addCases(cases: &tests.BuildExamplesContext) void {
|
|
cases.add("example/hello_world/hello.zig");
|
|
cases.addC("example/hello_world/hello_libc.zig");
|
|
cases.add("example/cat/main.zig");
|
|
cases.add("example/guess_number/main.zig");
|
|
if (!is_windows) {
|
|
// TODO get this test passing on windows
|
|
// See https://github.com/zig-lang/zig/issues/538
|
|
cases.addBuildFile("example/shared_library/build.zig");
|
|
cases.addBuildFile("example/mix_o_files/build.zig");
|
|
}
|
|
cases.addBuildFile("test/standalone/issue_339/build.zig");
|
|
cases.addBuildFile("test/standalone/pkg_import/build.zig");
|
|
cases.addBuildFile("test/standalone/use_alias/build.zig");
|
|
cases.addBuildFile("test/standalone/brace_expansion/build.zig");
|
|
}
|