From ebbcdb271bc9629a84bb4f485ac8b8f1b9f902df Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Wed, 30 Jun 2021 13:49:02 -0700 Subject: [PATCH] add smithy package to tests --- build.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/build.zig b/build.zig index 2e32598..916989e 100644 --- a/build.zig +++ b/build.zig @@ -77,6 +77,7 @@ pub fn build(b: *Builder) !void { const name = try std.fmt.allocPrint(b.allocator, "src/{s}", .{entry.name}); defer b.allocator.free(name); const t = b.addTest(name); + t.addPackagePath("smithy", "smithy/src/smithy.zig"); t.setBuildMode(mode); test_step.dependOn(&t.step); }