From 15932cdbf4ff45f30466332fbdb94a3231f495cb Mon Sep 17 00:00:00 2001 From: Amit Shah Date: Fri, 15 Mar 2013 17:01:16 +0530 Subject: auto-test: console open not failing isn't fatal The test that checks for a console port to be opened shouldn't be fatal -- we can go ahead and interact with the console even if open succeeded or we got another error instead of -ENXIO. Signed-off-by: Amit Shah --- auto-virtserial.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/auto-virtserial.c b/auto-virtserial.c index 244a61f..5ca945b 100644 --- a/auto-virtserial.c +++ b/auto-virtserial.c @@ -956,8 +956,6 @@ static int test_console(int nr) ret = guest_open_port(nr); err = result(__func__, true, "open", ret, -ENXIO, 0, OP_EQ, false); - if (err) - return err; } host_connect_chardev(nr); -- cgit