From 9a721b808743069fc26d6cf226595e2823e347a6 Mon Sep 17 00:00:00 2001 From: Sanket Padawe Date: Sun, 3 Sep 2017 22:32:43 -0700 Subject: [PATCH] Fix VTS test which turns off radio. Since the purpose of most of the test cases in current VTS is to check if proper errors are returned and there is no crash seen in vendor code, updating setRadioPower test case to turn on the radio instead of turning off. We want to avoid test cases which turn off radio or leads to modem shut down as those test cases affect other tests. Test: VTS Change-Id: I4fb9f18884f7ef21162015a0032c4431444f7025 Bug: 65230472 --- radio/1.0/vts/functional/radio_hidl_hal_misc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radio/1.0/vts/functional/radio_hidl_hal_misc.cpp b/radio/1.0/vts/functional/radio_hidl_hal_misc.cpp index d93b176d2a..795af86a0c 100644 --- a/radio/1.0/vts/functional/radio_hidl_hal_misc.cpp +++ b/radio/1.0/vts/functional/radio_hidl_hal_misc.cpp @@ -70,7 +70,7 @@ TEST_F(RadioHidlTest, getOperator) { TEST_F(RadioHidlTest, setRadioPower) { int serial = GetRandomSerialNumber(); - radio->setRadioPower(serial, 0); + radio->setRadioPower(serial, 1); EXPECT_EQ(std::cv_status::no_timeout, wait()); EXPECT_EQ(RadioResponseType::SOLICITED, radioRsp->rspInfo.type); EXPECT_EQ(serial, radioRsp->rspInfo.serial);