diff options
author | Andrew Jones <[email protected]> | 2011-08-12 15:32:03 +0200 |
---|---|---|
committer | Steven Rostedt <[email protected]> | 2011-10-17 11:54:10 -0400 |
commit | a908a6659ba3e7eb52ea74a78e2f342978aa5f5b (patch) | |
tree | 3ae1693889f0fa88441356fd40d3c74c8af81e93 | |
parent | cd8e368f475251c0e3c42203f21e68fa25afbb3d (diff) |
ktest: Create outputdir if it does not exist
Signed-off-by: Andrew Jones <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Steven Rostedt <[email protected]>
-rwxr-xr-x | tools/testing/ktest/ktest.pl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl index e087cb411c9b..253e9a2cfbd5 100755 --- a/tools/testing/ktest/ktest.pl +++ b/tools/testing/ktest/ktest.pl @@ -2850,9 +2850,11 @@ for (my $i = 1; $i <= $opt{"NUM_TESTS"}; $i++) { chdir $builddir || die "can't change directory to $builddir"; - if (!-d $tmpdir) { - mkpath($tmpdir) or - die "can't create $tmpdir"; + foreach my $dir ($tmpdir, $outputdir) { + if (!-d $dir) { + mkpath($dir) or + die "can't create $dir"; + } } $ENV{"SSH_USER"} = $ssh_user; |