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 e173b8b commit ee61492Copy full SHA for ee61492
tools/testing/kunit/kunit.py
@@ -82,7 +82,9 @@ def build_tests(linux: kunit_kernel.LinuxSourceTree,
82
request.make_options)
83
build_end = time.time()
84
if not success:
85
- return KunitResult(KunitStatus.BUILD_FAILURE, 'could not build kernel')
+ return KunitResult(KunitStatus.BUILD_FAILURE,
86
+ 'could not build kernel',
87
+ build_end - build_start)
88
89
return KunitResult(KunitStatus.BUILD_FAILURE,
90
'could not build kernel',
0 commit comments