aboutsummaryrefslogtreecommitdiff
path: root/test/tests.zig
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2017-05-01 16:35:10 -0400
committerAndrew Kelley <superjoe30@gmail.com>2017-05-01 16:35:10 -0400
commit3cbd0065fa4b0f659dfb1733b25bd09e37442d09 (patch)
tree2a732cbe2cd3cbd0fd804db39885e5c57117591e /test/tests.zig
parent17b935325e7c315304952f38037c7200595c5f10 (diff)
downloadzig-3cbd0065fa4b0f659dfb1733b25bd09e37442d09.tar.gz
zig-3cbd0065fa4b0f659dfb1733b25bd09e37442d09.zip
basic support for specifying packages at the command line
See #226
Diffstat (limited to 'test/tests.zig')
-rw-r--r--test/tests.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tests.zig b/test/tests.zig
index 837dcac08e..fa5aea10eb 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -657,7 +657,7 @@ pub const BuildExamplesContext = struct {
pub fn addBuildFile(self: &BuildExamplesContext, build_file: []const u8) {
const b = self.b;
- const annotated_case_name = b.fmt("build {}", build_file);
+ const annotated_case_name = b.fmt("build {} (debug)", build_file);
test (self.test_filter) |filter| {
if (mem.indexOf(u8, annotated_case_name, filter) == null)
return;