-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move cras_test_client to //cras/deprecated and document it
BUG=b:322914985 TEST=CQ Change-Id: Idb3cc824b2dbd51aaf8a21dcfa7402602543139b Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/adhd/+/5248555 Tested-by: chromeos-cop-builder@chromeos-cop.iam.gserviceaccount.com <chromeos-cop-builder@chromeos-cop.iam.gserviceaccount.com> Auto-Submit: Li-Yu Yu <aaronyu@google.com> Reviewed-by: Yu-Hsuan Hsu <yuhsuan@chromium.org> Commit-Queue: Yu-Hsuan Hsu <yuhsuan@chromium.org>
- Loading branch information
Showing
8 changed files
with
43 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Copyright 2024 The ChromiumOS Authors | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
|
||
load("@rules_cc//cc:defs.bzl", "cc_binary") | ||
|
||
cc_binary( | ||
name = "cras_test_client", | ||
srcs = ["cras_test_client.c"], | ||
visibility = ["//dist:__pkg__"], | ||
deps = [ | ||
"//cras/common:rust_common_cc", | ||
"//cras/src/common:cras_types_internal", | ||
"//cras/src/libcras:cras_client", | ||
"//cras/src/server/rust:cc", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# cras_test_client | ||
|
||
Command line utility to interact with CRAS. | ||
|
||
## Deprecation (go/cras_test_client_deprecation) | ||
|
||
`cras_test_client` is deprecated in favor of `cras_tests`. It is preferred that | ||
new code use `cras_tests` instead. | ||
|
||
If you find a feature in `cras_test_client` that is missing in `cras_tests`, | ||
please file an issue at our [public] or [internal] issue tracker. | ||
|
||
[public]: https://issuetracker.google.com/issues?q=status:open%20componentid:960644 | ||
[internal]: https://issuetracker.google.com/issues?q=status:open%20componentid:167272 |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters