Merge tag 'linux-kselftest-kunit-fixes-5.11-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest

Pull kunit fixes from Shuah Khan:
"One fix to force the use of the 'tty' console for UML.

Given that kunit tool requires the console output, explicitly stating
the dependency makes sense than relying on it being the default"

* tag 'linux-kselftest-kunit-fixes-5.11-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest:
kunit: tool: Force the use of the 'tty' console for UML

+1 -1
+1 -1
tools/testing/kunit/kunit_kernel.py
··· 198 return self.validate_config(build_dir) 199 200 def run_kernel(self, args=[], build_dir='', timeout=None): 201 - args.extend(['mem=1G']) 202 self._ops.linux_bin(args, timeout, build_dir) 203 outfile = get_outfile_path(build_dir) 204 subprocess.call(['stty', 'sane'])
··· 198 return self.validate_config(build_dir) 199 200 def run_kernel(self, args=[], build_dir='', timeout=None): 201 + args.extend(['mem=1G', 'console=tty']) 202 self._ops.linux_bin(args, timeout, build_dir) 203 outfile = get_outfile_path(build_dir) 204 subprocess.call(['stty', 'sane'])