From f6cf891b4d07dd3ad4867993d0b11551f283f201 Mon Sep 17 00:00:00 2001 From: Filipe Cabecinhas Date: Tue, 10 Jul 2018 13:59:59 +0000 Subject: [PATCH] [scudo] Use mkdir -p when creating directories for a test llvm-svn: 336673 --- compiler-rt/test/scudo/random_shuffle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/test/scudo/random_shuffle.cpp b/compiler-rt/test/scudo/random_shuffle.cpp index d014dee..b493a29 100644 --- a/compiler-rt/test/scudo/random_shuffle.cpp +++ b/compiler-rt/test/scudo/random_shuffle.cpp @@ -1,6 +1,6 @@ // RUN: %clangxx_scudo %s -o %t // RUN: rm -rf %t-dir/random_shuffle_tmp_dir -// RUN: mkdir %t-dir/random_shuffle_tmp_dir +// RUN: mkdir -p %t-dir/random_shuffle_tmp_dir // RUN: %run %t 100 > %t-dir/random_shuffle_tmp_dir/out1 // RUN: %run %t 100 > %t-dir/random_shuffle_tmp_dir/out2 // RUN: %run %t 10000 > %t-dir/random_shuffle_tmp_dir/out1 -- 2.7.4