mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-26 21:54:33 +08:00
tools: disable running TX timestamping tests for now
Disable the TX timestamping related tests for now, as the feature will need some further work.
This commit is contained in:
parent
a9f80a8195
commit
975d3b1486
@ -690,6 +690,11 @@ static void test_pre_setup(const void *test_data)
|
||||
struct test_data *data = tester_get_data();
|
||||
const struct iso_client_data *isodata = test_data;
|
||||
|
||||
if (isodata && isodata->so_timestamping) {
|
||||
if (tester_pre_setup_skip_by_default())
|
||||
return;
|
||||
}
|
||||
|
||||
data->mgmt = mgmt_new_default();
|
||||
if (!data->mgmt) {
|
||||
tester_warn("Failed to setup management interface");
|
||||
|
@ -214,6 +214,12 @@ static void read_index_list_callback(uint8_t status, uint16_t length,
|
||||
static void test_pre_setup(const void *test_data)
|
||||
{
|
||||
struct test_data *data = tester_get_data();
|
||||
const struct l2cap_data *l2data = test_data;
|
||||
|
||||
if (l2data && l2data->so_timestamping) {
|
||||
if (tester_pre_setup_skip_by_default())
|
||||
return;
|
||||
}
|
||||
|
||||
data->mgmt = mgmt_new_default();
|
||||
if (!data->mgmt) {
|
||||
|
@ -197,6 +197,12 @@ static void read_index_list_callback(uint8_t status, uint16_t length,
|
||||
static void test_pre_setup(const void *test_data)
|
||||
{
|
||||
struct test_data *data = tester_get_data();
|
||||
const struct sco_client_data *scodata = test_data;
|
||||
|
||||
if (scodata && scodata->so_timestamping) {
|
||||
if (tester_pre_setup_skip_by_default())
|
||||
return;
|
||||
}
|
||||
|
||||
data->mgmt = mgmt_new_default();
|
||||
if (!data->mgmt) {
|
||||
|
Loading…
Reference in New Issue
Block a user