aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/testing/ktest/ktest.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl
index a7a74f015ef3..52e45b8551e8 100755
--- a/tools/testing/ktest/ktest.pl
+++ b/tools/testing/ktest/ktest.pl
@@ -398,7 +398,12 @@ sub fail {
398 my $date = sprintf "%04d%02d%02d%02d%02d%02d", 398 my $date = sprintf "%04d%02d%02d%02d%02d%02d",
399 1900+$t[5],$t[4],$t[3],$t[2],$t[1],$t[0]; 399 1900+$t[5],$t[4],$t[3],$t[2],$t[1],$t[0];
400 400
401 my $dir = "$machine-$test_type-$build_type-fail-$date"; 401 my $type = $build_type;
402 if ($type =~ /useconfig/) {
403 $type = "useconfig";
404 }
405
406 my $dir = "$machine-$test_type-$type-fail-$date";
402 my $faildir = "$store_failures/$dir"; 407 my $faildir = "$store_failures/$dir";
403 408
404 if (!-d $faildir) { 409 if (!-d $faildir) {