We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6a85de commit 717a154Copy full SHA for 717a154
test/framework/options.py
@@ -5858,7 +5858,8 @@ def test_sanity_check_only(self):
5858
self.assertTrue(regex.search(error_msg), "Pattern '%s' should be found in: %s" % (regex.pattern, error_msg))
5859
5860
# failing sanity check for extension can be bypassed via --skip-extensions
5861
- self.eb_main(args + ['--skip-extensions'], do_build=True, return_error=True)
+ outtxt = self.eb_main(args + ['--skip-extensions'], do_build=True, raise_error=True)
5862
+ self.assertTrue("Sanity check for toy successful" in outtxt)
5863
5864
def test_skip_extensions(self):
5865
"""Test use of --skip-extensions."""
0 commit comments