forked from cpputest/cpputest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.zig
154 lines (127 loc) · 4.91 KB
/
build.zig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
const std = @import("std");
// TODO: coverage
const show_coverage = false;
const debug_print_build_info = false;
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
// CppUTest Framework
const libcpputest = build_cpputest(b, target);
b.installArtifact(libcpputest);
// UnitTest
const exe = b.addExecutable(.{
.name = "CppUTestExamples",
.target = target,
.optimize = optimize,
});
exe.step.dependOn(&libcpputest.step);
exe.linkLibC();
exe.linkLibCpp();
exe.linkLibrary(libcpputest);
exe.addIncludePath(.{ .path = "include" });
exe.addIncludePath(.{ .path = "examples/ApplicationLib" });
exe.addIncludePath(.{ .path = "examples/AllTests" });
// CPPUTEST_USE_GCOV, -lgcov
exe.addCSourceFiles(&.{
// the "application" to be put under test
"examples/ApplicationLib/CircularBuffer.cpp",
"examples/ApplicationLib/EventDispatcher.cpp",
"examples/ApplicationLib/hello.c",
"examples/ApplicationLib/Printer.cpp",
// unit test cource code
"examples/AllTests/AllTests.cpp",
"examples/AllTests/CircularBufferTest.cpp",
"examples/AllTests/EventDispatcherTest.cpp",
"examples/AllTests/FEDemoTest.cpp",
"examples/AllTests/HelloTest.cpp",
"examples/AllTests/MockDocumentationTest.cpp",
"examples/AllTests/PrinterTest.cpp",
}, &.{
"--coverage",
// `--coverage` equivalent to the following (?):
// "-fprofile-arcs",
// "-ftest-coverage",
});
b.installArtifact(exe);
if (debug_print_build_info) print_build_info(exe);
const run_cmd = b.addRunArtifact(exe);
run_cmd.step.dependOn(b.getInstallStep());
// This allows the user to pass arguments to the application in the build
// command itself, like this: `zig build run -- -c -v <arg3> <argn>`
if (b.args) |args| {
run_cmd.addArgs(args);
}
const run_step = b.step("run", "Run the example unit test");
run_step.dependOn(&run_cmd.step);
}
fn build_cpputest(b: *std.Build, libtarget: std.zig.CrossTarget) *std.Build.CompileStep {
const lib = b.addStaticLibrary(.{
.name = "cpputest",
.target = libtarget,
.optimize = std.builtin.Mode.ReleaseSafe,
});
lib.linkLibCpp();
lib.strip = true;
lib.addIncludePath(.{ .path = "include" });
if (debug_print_build_info) print_build_info(lib);
const t = lib.target_info.target;
lib.addCSourceFiles(&.{
// CppUTest
"src/CppUTest/CommandLineArguments.cpp",
"src/CppUTest/CommandLineTestRunner.cpp",
"src/CppUTest/JUnitTestOutput.cpp",
"src/CppUTest/TeamCityTestOutput.cpp",
"src/CppUTest/MemoryLeakDetector.cpp",
"src/CppUTest/MemoryLeakWarningPlugin.cpp",
"src/CppUTest/SimpleMutex.cpp",
"src/CppUTest/SimpleString.cpp",
"src/CppUTest/SimpleStringInternalCache.cpp",
"src/CppUTest/TestFailure.cpp",
"src/CppUTest/TestFilter.cpp",
"src/CppUTest/TestHarness_c.cpp",
"src/CppUTest/TestMemoryAllocator.cpp",
"src/CppUTest/TestOutput.cpp",
"src/CppUTest/TestPlugin.cpp",
"src/CppUTest/TestRegistry.cpp",
"src/CppUTest/TestResult.cpp",
"src/CppUTest/TestTestingFixture.cpp",
"src/CppUTest/Utest.cpp",
// CppUTestExt
"src/CppUTestExt/CodeMemoryReportFormatter.cpp",
"src/CppUTestExt/GTest.cpp",
"src/CppUTestExt/IEEE754ExceptionsPlugin.cpp",
"src/CppUTestExt/MemoryReportAllocator.cpp",
"src/CppUTestExt/MemoryReporterPlugin.cpp",
"src/CppUTestExt/MemoryReportFormatter.cpp",
"src/CppUTestExt/MockActualCall.cpp",
"src/CppUTestExt/MockExpectedCall.cpp",
"src/CppUTestExt/MockExpectedCallsList.cpp",
"src/CppUTestExt/MockFailure.cpp",
"src/CppUTestExt/MockNamedValue.cpp",
"src/CppUTestExt/MockSupport.cpp",
"src/CppUTestExt/MockSupportPlugin.cpp",
"src/CppUTestExt/MockSupport_c.cpp",
"src/CppUTestExt/OrderedTest.cpp",
}, &.{"-Werror"});
lib.addCSourceFiles(switch (t.os.tag) {
.windows => &.{"src/Platforms/Dos/UtestPlatform.cpp"},
.linux, .macos => &.{"src/Platforms/Gcc/UtestPlatform.cpp"},
else => unreachable, // @panic("can only support Windows or Linux")
}, &.{});
return lib;
}
fn print_build_info(lib: *std.Build.CompileStep) void {
// tested:
// -Dtarget=x86-windows-gnu
// -Dtarget=x86-linux-musl
// untested:
// -Dtarget=aarch64-linux-musl
// -Dtarget=aarch64-macos-none
// -Dtarget=x86-macos-none
std.debug.print("{s}:\n", .{lib.name});
const t = lib.target_info.target;
std.debug.print(" os/target: {}\n", .{t.os.tag});
// -Doptimize=ReleaseFast
// -Doptimize=ReleaseSafe
std.debug.print(" release-mode: {}\n", .{lib.optimize});
}