Re: [PATCH] kunit: Fix '--build_dir' option

2019-10-07 Thread shuah
On 10/7/19 4:03 PM, Brendan Higgins wrote: On Fri, Sep 6, 2019 at 7:33 PM shuah wrote: On 9/6/19 7:16 PM, Brendan Higgins wrote: On Fri, Sep 6, 2019 at 9:12 AM SeongJae Park wrote: Running kunit with '--build_dir' option gives following error message: ``` $ ./tools/testing/kunit/kunit.py

Re: [PATCH] kunit: Fix '--build_dir' option

2019-10-07 Thread Brendan Higgins
On Fri, Sep 6, 2019 at 7:33 PM shuah wrote: > > On 9/6/19 7:16 PM, Brendan Higgins wrote: > > On Fri, Sep 6, 2019 at 9:12 AM SeongJae Park wrote: > >> > >> Running kunit with '--build_dir' option gives following error message: > >> > >> ``` > >> $ ./tools/testing/kunit/kunit.py run --build_dir

Re: [PATCH] kunit: Fix '--build_dir' option

2019-09-07 Thread SeongJae Park
On Sat, Sep 7, 2019 at 4:33 AM shuah wrote: > > On 9/6/19 7:16 PM, Brendan Higgins wrote: > > On Fri, Sep 6, 2019 at 9:12 AM SeongJae Park wrote: > >> > >> Running kunit with '--build_dir' option gives following error message: > >> > >> ``` > >> $ ./tools/testing/kunit/kunit.py run --build_dir

Re: [PATCH] kunit: Fix '--build_dir' option

2019-09-06 Thread shuah
On 9/6/19 7:16 PM, Brendan Higgins wrote: On Fri, Sep 6, 2019 at 9:12 AM SeongJae Park wrote: Running kunit with '--build_dir' option gives following error message: ``` $ ./tools/testing/kunit/kunit.py run --build_dir ../linux.out.kunit/ [00:57:24] Building KUnit Kernel ... [00:57:29]

Re: [PATCH] kunit: Fix '--build_dir' option

2019-09-06 Thread Brendan Higgins
On Fri, Sep 6, 2019 at 9:12 AM SeongJae Park wrote: > > Running kunit with '--build_dir' option gives following error message: > > ``` > $ ./tools/testing/kunit/kunit.py run --build_dir ../linux.out.kunit/ > [00:57:24] Building KUnit Kernel ... > [00:57:29] Starting KUnit Kernel ... > Traceback

[PATCH] kunit: Fix '--build_dir' option

2019-09-06 Thread SeongJae Park
Running kunit with '--build_dir' option gives following error message: ``` $ ./tools/testing/kunit/kunit.py run --build_dir ../linux.out.kunit/ [00:57:24] Building KUnit Kernel ... [00:57:29] Starting KUnit Kernel ... Traceback (most recent call last): File "./tools/testing/kunit/kunit.py",

Re: [PATCH] kunit: Fix '--build_dir' option

2019-09-06 Thread SeongJae Park
On Fri, Sep 6, 2019 at 5:51 PM shuah wrote: > > On 9/6/19 6:05 AM, SeongJae Park wrote: > > kunit fails to run with '--build_dir' option because the option is not > > properly sent to kernel running procedure. This commit fixes the > > problem. > > Can you please include the failure you are

Re: [PATCH] kunit: Fix '--build_dir' option

2019-09-06 Thread shuah
On 9/6/19 6:05 AM, SeongJae Park wrote: kunit fails to run with '--build_dir' option because the option is not properly sent to kernel running procedure. This commit fixes the problem. Can you please include the failure you are seeing in the commit log thanks, -- Shuah

[PATCH] kunit: Fix '--build_dir' option

2019-09-06 Thread SeongJae Park
kunit fails to run with '--build_dir' option because the option is not properly sent to kernel running procedure. This commit fixes the problem. Signed-off-by: SeongJae Park --- tools/testing/kunit/kunit.py | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git