[PATCH v2 02/39] tests/qtest: i440fx-test: Rewrite create_blob_file() to be portable

2022-09-20 Thread Bin Meng
From: Bin Meng Previously request_{bios, pflash} cases were skipped on win32, mainly due to create_blob_file() calling mmap() which does not exist on win32. This rewirtes create_blob_file() to be portable, so that we can enable these cases on Windows. Suggested-by: Marc-André Lureau Signed-off-

Re: [PATCH v2 02/39] tests/qtest: i440fx-test: Rewrite create_blob_file() to be portable

2022-09-22 Thread Marc-André Lureau
Hi On Tue, Sep 20, 2022 at 12:56 PM Bin Meng wrote: > From: Bin Meng > > Previously request_{bios, pflash} cases were skipped on win32, mainly > due to create_blob_file() calling mmap() which does not exist on win32. > This rewirtes create_blob_file() to be portable, so that we can enable > the