zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 6492763befb40e65be3fca2bbb2c093997935746 (tree)
parent 1c85050dad6a7e1d486606205ca2eb2cd7028ef5
Author: Alexandros Naskos <alex_naskos@hotmail.com>
Date:   Mon, 16 Apr 2018 04:06:00 +0300

Fixed test build code

Diffstat:
Mtest/tests.zig | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/test/tests.zig b/test/tests.zig @@ -583,6 +583,7 @@ pub const CompileErrorContext = struct { Mode.Debug => {}, Mode.ReleaseSafe => zig_args.append("--release-safe") catch unreachable, Mode.ReleaseFast => zig_args.append("--release-fast") catch unreachable, + Mode.ReleaseSmall => zig_args.append("--release-small") catch unreachable, } warn("Test {}/{} {}...", self.test_index+1, self.context.test_index, self.name);