Re: [PATCH v3] test/py: i2c: Add tests for i2c command

2024-01-17 Thread Tom Rini
On Tue, Jan 02, 2024 at 12:17:07PM +0530, Love Kumar wrote: > Add below test cases for i2c commands: > i2c_bus - To show i2c bus info, > i2c_dev - To set or show the current bus, > i2c_probe - To probe the i2c device, > i2c_eeprom - To test i2c eeprom device, > i2c_probe_all_buses - To list down a

Re: [PATCH v3] test/py: i2c: Add tests for i2c command

2024-01-03 Thread Tom Rini
On Tue, Jan 02, 2024 at 07:06:29AM -0700, Simon Glass wrote: > Hi Love, > > On Mon, Jan 1, 2024 at 11:47 PM Love Kumar wrote: > > > > Add below test cases for i2c commands: > > i2c_bus - To show i2c bus info, > > i2c_dev - To set or show the current bus, > > i2c_probe - To probe the i2c device, >

Re: [PATCH v3] test/py: i2c: Add tests for i2c command

2024-01-02 Thread Simon Glass
Hi Love, On Mon, Jan 1, 2024 at 11:47 PM Love Kumar wrote: > > Add below test cases for i2c commands: > i2c_bus - To show i2c bus info, > i2c_dev - To set or show the current bus, > i2c_probe - To probe the i2c device, > i2c_eeprom - To test i2c eeprom device, > i2c_probe_all_buses - To list down

[PATCH v3] test/py: i2c: Add tests for i2c command

2024-01-01 Thread Love Kumar
Add below test cases for i2c commands: i2c_bus - To show i2c bus info, i2c_dev - To set or show the current bus, i2c_probe - To probe the i2c device, i2c_eeprom - To test i2c eeprom device, i2c_probe_all_buses - To list down all the buses and probes it Signed-off-by: Love Kumar --- Changes in v2: