diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-10-16 22:54:34 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-12-20 15:35:58 +0100 |
commit | 8c95db33be58a545dd2e030428bded0bd958c4b6 (patch) | |
tree | b78809fae2cec5eb2b9513b4960bfbbd697f3871 /asl/BUILD.bazel | |
parent | 7193114b152d3a5b714a22f54ed89950c0ba9aba (diff) |
Start work on the testing framework
Diffstat (limited to 'asl/BUILD.bazel')
-rw-r--r-- | asl/BUILD.bazel | 5 |
1 files changed, 3 insertions, 2 deletions
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",
|