From 8c95db33be58a545dd2e030428bded0bd958c4b6 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Wed, 16 Oct 2024 22:54:34 +0200 Subject: Start work on the testing framework --- asl/BUILD.bazel | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'asl/BUILD.bazel') diff --git a/asl/BUILD.bazel b/asl/BUILD.bazel index f0d4c27..f7dddd1 100644 --- a/asl/BUILD.bazel +++ b/asl/BUILD.bazel @@ -24,11 +24,12 @@ cc_library( [cc_test( name = "%s_tests" % name, srcs = [ - "%s_tests.cpp" % name, - "test_types.hpp", + "tests/%s_tests.cpp" % name, + "tests/test_types.hpp", ], deps = [ ":asl", + "//asl/testing", ], ) for name in [ "format", -- cgit