From: Simon Glass Date: Mon, 18 Oct 2021 18:13:15 +0000 (-0600) Subject: binman: Allow timeout to occur in the image or its section X-Git-Tag: v2022.01~65^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b2dfe8382d9dff1f06ac703e736c1633b09bfca2;p=platform%2Fkernel%2Fu-boot.git binman: Allow timeout to occur in the image or its section At present testThreadTimeout() assumes that the expected timeout happens first when building the section, but it can just as easily happen at the top-level image. Update the test to cope with both. Signed-off-by: Simon Glass Reviewed-by: Marek BehĂșn --- diff --git a/tools/binman/ftest.py b/tools/binman/ftest.py index cea3ebf..8199a4f 100644 --- a/tools/binman/ftest.py +++ b/tools/binman/ftest.py @@ -4565,8 +4565,7 @@ class TestFunctional(unittest.TestCase): with self.assertRaises(ValueError) as e: self._DoTestFile('202_section_timeout.dts', test_section_timeout=True) - self.assertIn("Node '/binman/section@0': Timed out obtaining contents", - str(e.exception)) + self.assertIn("Timed out obtaining contents", str(e.exception)) def testTiming(self): """Test output of timing information"""