Re: [PATCH] test/cmd/wget.c: Fix loadaddr rewrite

2025-01-27 Thread Tom Rini
On Mon, 27 Jan 2025 00:57:03 +0100, Marek Vasut wrote: > The $loadaddr variable is a hexadecimal value, not a string, it must be > assigned using env_set_hex(). This may break follow up tests, like the > dm_test_cmd_hash_md5 in CI. To avoid any interference with other tests, > set $wgetaddr variab

Re: [PATCH] test/cmd/wget.c: Fix loadaddr rewrite

2025-01-27 Thread Fabio Estevam
On Sun, Jan 26, 2025 at 9:15 PM Marek Vasut wrote: > > The $loadaddr variable is a hexadecimal value, not a string, it must be > assigned using env_set_hex(). This may break follow up tests, like the > dm_test_cmd_hash_md5 in CI. To avoid any interference with other tests, > set $wgetaddr variable

Re: [PATCH] test/cmd/wget.c: Fix loadaddr rewrite

2025-01-26 Thread Jerome Forissier
On 1/27/25 00:57, Marek Vasut wrote: > The $loadaddr variable is a hexadecimal value, not a string, it must be > assigned using env_set_hex(). This may break follow up tests, like the > dm_test_cmd_hash_md5 in CI. To avoid any interference with other tests, > set $wgetaddr variable which is spec

[PATCH] test/cmd/wget.c: Fix loadaddr rewrite

2025-01-26 Thread Marek Vasut
The $loadaddr variable is a hexadecimal value, not a string, it must be assigned using env_set_hex(). This may break follow up tests, like the dm_test_cmd_hash_md5 in CI. To avoid any interference with other tests, set $wgetaddr variable which is specific to this test and use it in the test. Fixes