]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
test/py: spi: Set the expected error message
authorLove Kumar <love.kumar@amd.com>
Mon, 2 Sep 2024 18:38:17 +0000 (00:08 +0530)
committerTom Rini <trini@konsulko.com>
Tue, 10 Sep 2024 19:15:06 +0000 (13:15 -0600)
If erase/write/read size is 0 then it throws the mentioned error message
when debug message ie enabled as per 899fb5aa8bec ("cmd: sf/nand: Print
and return failure when 0 length is passed"), setting it to None as
debug message is not enabled by default for testing.

Signed-off-by: Love Kumar <love.kumar@amd.com>
test/py/tests/test_spi.py

index c81eca5fba6ea31ae56012860b9ab8cbc7c55cad..3160d58540f288a327552636db6dd70d15001ad9 100644 (file)
@@ -646,7 +646,7 @@ def test_spi_negative(u_boot_console):
 
         # If erase size is 0
         esize = 0
-        error_msg = 'ERROR: Invalid size 0'
+        error_msg = None
         flash_ops(
             u_boot_console, 'erase', start, esize, 0, 1, error_msg, EXPECTED_ERASE
         )
@@ -685,7 +685,7 @@ def test_spi_negative(u_boot_console):
         # if Write/Read size is 0
         offset = random.randint(0, 2)
         size = 0
-        error_msg = 'ERROR: Invalid size 0'
+        error_msg = None
         flash_ops(
             u_boot_console, 'write', offset, size, addr, 1, error_msg, EXPECTED_WRITE
         )