| // SPDX-License-Identifier: GPL-2.0-or-later |
| * Executes tests for temperature command |
| * Copyright (C) 2022 Sartura Ltd. |
| static int dm_test_cmd_temperature(struct unit_test_state *uts) |
| ut_assertok(uclass_get_device(UCLASS_THERMAL, 0, &dev)); |
| ut_assertok(console_record_reset_enable()); |
| /* Test that "temperature list" shows the sandbox device */ |
| ut_assertok(run_command("temperature list", 0)); |
| ut_assert_nextline("| Device | Driver | Parent"); |
| ut_assert_nextline("| thermal | thermal-sandbox | root_driver"); |
| /* Test that "temperature get thermal" returns expected value */ |
| ut_assertok(run_command("temperature get thermal", 0)); |
| ut_assert_nextline("thermal: 100 C"); |
| DM_TEST(dm_test_cmd_temperature, UT_TESTF_SCAN_FDT | UT_TESTF_CONSOLE_REC); |