diff mbox series

qtest/fuzz-lsi53c895a-test: set guest RAM to 2G

Message ID 20220902133853.834065-1-mcascell@redhat.com
State New
Headers show
Series qtest/fuzz-lsi53c895a-test: set guest RAM to 2G | expand

Commit Message

Mauro Matteo Cascella Sept. 2, 2022, 1:38 p.m. UTC
test_lsi_do_msgout_cancel_req does not run on machines with small size
memory. Reduce guest memory from 4G to 2G to alleviate the problem.

Reported-by: Bin Meng <bmeng.cn@gmail.com>
Signed-off-by: Mauro Matteo Cascella <mcascell@redhat.com>
---
 tests/qtest/fuzz-lsi53c895a-test.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Alexander Bulekov Sept. 2, 2022, 4:07 p.m. UTC | #1
On 220902 1538, Mauro Matteo Cascella wrote:
> test_lsi_do_msgout_cancel_req does not run on machines with small size
> memory. Reduce guest memory from 4G to 2G to alleviate the problem.
> 
> Reported-by: Bin Meng <bmeng.cn@gmail.com>
> Signed-off-by: Mauro Matteo Cascella <mcascell@redhat.com>
> ---
>  tests/qtest/fuzz-lsi53c895a-test.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Alexander Bulekov <alxndr@bu.edu>

Thanks!
Bin Meng Sept. 2, 2022, 4:27 p.m. UTC | #2
On Fri, Sep 2, 2022 at 9:39 PM Mauro Matteo Cascella
<mcascell@redhat.com> wrote:
>
> test_lsi_do_msgout_cancel_req does not run on machines with small size
> memory. Reduce guest memory from 4G to 2G to alleviate the problem.
>
> Reported-by: Bin Meng <bmeng.cn@gmail.com>
> Signed-off-by: Mauro Matteo Cascella <mcascell@redhat.com>
> ---
>  tests/qtest/fuzz-lsi53c895a-test.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>

Tested-by: Bin Meng <bmeng.cn@gmail.com>

Thanks!
diff mbox series

Patch

diff --git a/tests/qtest/fuzz-lsi53c895a-test.c b/tests/qtest/fuzz-lsi53c895a-test.c
index b23d3ecf45..434c16bf42 100644
--- a/tests/qtest/fuzz-lsi53c895a-test.c
+++ b/tests/qtest/fuzz-lsi53c895a-test.c
@@ -21,7 +21,7 @@  static void test_lsi_do_msgout_cancel_req(void)
         return;
     }
 
-    s = qtest_init("-M q35 -m 4G -display none -nodefaults "
+    s = qtest_init("-M q35 -m 2G -display none -nodefaults "
                    "-device lsi53c895a,id=scsi "
                    "-device scsi-hd,drive=disk0 "
                    "-drive file=null-co://,id=disk0,if=none,format=raw");