From 3a7ddfca0169c76279708c79fc6c789aae196e3e Mon Sep 17 00:00:00 2001 From: Enrico Jörns Date: Fri, 31 Mar 2023 12:26:17 +0200 Subject: oeqa/utils/commands: fix usage of undefined EPIPE (From OE-Core rev: d0eeb32cb0d990698287955dd7cac643bcebdafc) Signed-off-by: Enrico Jorns Signed-off-by: Richard Purdie (cherry picked from commit 1cb17e37e275794e26debed2d171c2394d8bb945) Signed-off-by: Steve Sakoman --- meta/lib/oeqa/utils/commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py index f733fcdf3c..c03ba52ef2 100644 --- a/meta/lib/oeqa/utils/commands.py +++ b/meta/lib/oeqa/utils/commands.py @@ -21,6 +21,7 @@ from oeqa.utils import CommandError from oeqa.utils import ftools import re import contextlib +import errno # Export test doesn't require bb try: import bb @@ -85,7 +86,7 @@ class Command(object): except OSError as ex: # It's not an error when the command does not consume all # of our data. subprocess.communicate() also ignores that. - if ex.errno != EPIPE: + if ex.errno != errno.EPIPE: raise # We write in a separate thread because then we can read -- cgit v1.2.3-54-g00ecf