Skip to content

tests: drivers: spi: spi_loopback: skip tests if invalid config #90321

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/drivers/spi/spi_loopback/src/spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,13 +196,13 @@ static void spi_loopback_transceive(struct spi_dt_spec *const spec,
spi_loopback_gpio_cs_loopback_prepare();
ret = spi_transceive_dt(spec, tx, rx);
if (ret == -EINVAL || ret == -ENOTSUP) {
TC_PRINT("Spi config invalid for this controller - skip\n");
goto out;
TC_PRINT("Spi config invalid for this controller\n");
zassert_ok(pm_device_runtime_put(spec->bus));
ztest_test_skip();
}
zassert_ok(ret, "SPI transceive failed, code %d", ret);
/* There should be two CS triggers during the transaction, start and end */
zassert_false(spi_loopback_gpio_cs_loopback_check(2));
out:
zassert_ok(pm_device_runtime_put(spec->bus));
}

Expand Down