Skip to content

Commit

Permalink
BSA Test 604 (Check Arm GENERIC UART Interrupt) needs a larger timeout
Browse files Browse the repository at this point in the history
…#421 (#430)

Change-Id: I402b684a5a219805bba1c8d5e9bf4fa21b169700

Signed-off-by: kiranrnad <[email protected]>
Co-authored-by: kiranrnad <[email protected]>
  • Loading branch information
kiranronad and kiranrnad authored Jan 31, 2025
1 parent d62e936 commit 999eb7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test_pool/peripherals/operating_system/test_os_d003.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/** @file
* Copyright (c) 2016-2018, 2021, 2023-2024, Arm Limited or its affiliates. All rights reserved.
* Copyright (c) 2016-2018, 2021, 2023-2025, Arm Limited or its affiliates. All rights reserved.
* SPDX-License-Identifier : Apache-2.0
* Licensed under the Apache License, Version 2.0 (the "License");
Expand Down Expand Up @@ -188,7 +188,7 @@ payload1()
{
uint32_t count = val_peripheral_get_info(NUM_UART, 0);
uint32_t index = val_pe_get_index_mpid(val_pe_get_mpid());
uint32_t timeout = TIMEOUT_LARGE;
uint32_t timeout;
uint32_t interface_type;

if (count == 0) {
Expand All @@ -198,7 +198,7 @@ payload1()
}
val_set_status(index, RESULT_SKIP(TEST_NUM1, 2));
while (count != 0) {
timeout = TIMEOUT_MEDIUM;
timeout = TIMEOUT_LARGE;
int_id = val_peripheral_get_info(UART_GSIV, count - 1);
interface_type = val_peripheral_get_info(UART_INTERFACE_TYPE, count - 1);
l_uart_base = val_peripheral_get_info(UART_BASE0, count - 1);
Expand Down

0 comments on commit 999eb7b

Please sign in to comment.