Re: [PATCH 08/13] rust: build integration test for the qemu_api crate

2024-10-21 Thread Paolo Bonzini
Il lun 21 ott 2024, 13:55 Junjie Mao ha scritto: > > Paolo Bonzini writes: > > > On Mon, Oct 21, 2024 at 1:35 PM Junjie Mao > wrote: > >> > >> > >> Paolo Bonzini writes: > >> > >> > Adjust the integration test to compile with a subset of QEMU object > >> > files, and make it actually create an

Re: [PATCH 08/13] rust: build integration test for the qemu_api crate

2024-10-21 Thread Junjie Mao
Paolo Bonzini writes: > On Mon, Oct 21, 2024 at 1:35 PM Junjie Mao wrote: >> >> >> Paolo Bonzini writes: >> >> > Adjust the integration test to compile with a subset of QEMU object >> > files, and make it actually create an object of the class it defines. >> > >> > Follow the Rust filesystem

Re: [PATCH 08/13] rust: build integration test for the qemu_api crate

2024-10-21 Thread Paolo Bonzini
On Mon, Oct 21, 2024 at 1:35 PM Junjie Mao wrote: > > > Paolo Bonzini writes: > > > Adjust the integration test to compile with a subset of QEMU object > > files, and make it actually create an object of the class it defines. > > > > Follow the Rust filesystem conventions, where tests go in tests

Re: [PATCH 08/13] rust: build integration test for the qemu_api crate

2024-10-21 Thread Junjie Mao
Paolo Bonzini writes: > Adjust the integration test to compile with a subset of QEMU object > files, and make it actually create an object of the class it defines. > > Follow the Rust filesystem conventions, where tests go in tests/ if > they use the library in the same way any other code would

Re: [PATCH 08/13] rust: build integration test for the qemu_api crate

2024-10-21 Thread Paolo Bonzini
Il lun 21 ott 2024, 12:34 Junjie Mao ha scritto: > > Paolo Bonzini writes: > > > Adjust the integration test to compile with a subset of QEMU object > > files, and make it actually create an object of the class it defines. > > > > Follow the Rust filesystem conventions, where tests go in tests/

Re: [PATCH 08/13] rust: build integration test for the qemu_api crate

2024-10-21 Thread Junjie Mao
Paolo Bonzini writes: > Adjust the integration test to compile with a subset of QEMU object > files, and make it actually create an object of the class it defines. > > Follow the Rust filesystem conventions, where tests go in tests/ if > they use the library in the same way any other code would

[PATCH 08/13] rust: build integration test for the qemu_api crate

2024-10-18 Thread Paolo Bonzini
Adjust the integration test to compile with a subset of QEMU object files, and make it actually create an object of the class it defines. Follow the Rust filesystem conventions, where tests go in tests/ if they use the library in the same way any other code would. Signed-off-by: Paolo Bonzini --