Skip to content
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

tests: drivers: sdp_asm: Fix build error #20061

Merged
Merged
Show file tree
Hide file tree
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: 0 additions & 6 deletions scripts/quarantine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,3 @@
- platforms:
- native_posix
comment: "native_posix will be removed soon - native_sim platform is the default simulator now"

- scenarios:
- drivers.sdp_asm.basic
platforms:
- nrf54l15dk/nrf54l15/cpuflpr
comment: https://nordicsemi.atlassian.net/browse/NCSDK-31409
3 changes: 1 addition & 2 deletions tests/drivers/sdp_asm/pytest/test_sdp_asm.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ def test_sdp_asm(dut: DeviceAdapter):
execute_shell_cmd(cmd, f"{BUILD_DIR}")

logger.info("# Reflash")
cmd = ['west', 'flash', '--erase']
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'west flash --erase' doesn't know by itself which target shall be flashed when multiple DKs are connected to the host PC.

execute_shell_cmd(cmd, f"{BUILD_DIR}")
dut._flash_and_run()

logger.info("# Get output from serial port")
output = "\n".join(dut.readlines_until(regex='Test completed', timeout=5.0))
Expand Down
2 changes: 1 addition & 1 deletion tests/drivers/sdp_asm/src/add_1.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/

#include <zephyr/kernel.h>
#include <stdint.h>

extern volatile uint8_t arg_uint8_t;
extern volatile uint16_t arg_uint16_t;
Expand Down
2 changes: 1 addition & 1 deletion tests/drivers/sdp_asm/src/add_10.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/

#include <zephyr/kernel.h>
#include <stdint.h>

extern volatile uint8_t arg_uint8_t;
extern volatile uint16_t arg_uint16_t;
Expand Down
2 changes: 1 addition & 1 deletion tests/drivers/sdp_asm/src/add_100.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/

#include <zephyr/kernel.h>
#include <stdint.h>

extern volatile uint8_t arg_uint8_t;
extern volatile uint16_t arg_uint16_t;
Expand Down
1 change: 1 addition & 0 deletions tests/drivers/sdp_asm/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/

#include <zephyr/kernel.h>
#include <stdio.h>
#include "./add_1.h"
#include "./add_10.h"
Expand Down