From 614dd198699c4708cbf475e53b34806bc98cf853 Mon Sep 17 00:00:00 2001 From: Jordan Rupprecht Date: Fri, 1 Feb 2019 21:14:21 +0000 Subject: [PATCH] [DebugInfo] Fix mkdir use in test llvm-svn: 352918 --- llvm/test/DebugInfo/symbolize-gnu-debuglink-no-realpath.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/DebugInfo/symbolize-gnu-debuglink-no-realpath.test b/llvm/test/DebugInfo/symbolize-gnu-debuglink-no-realpath.test index d6be5ef..5141ff6 100644 --- a/llvm/test/DebugInfo/symbolize-gnu-debuglink-no-realpath.test +++ b/llvm/test/DebugInfo/symbolize-gnu-debuglink-no-realpath.test @@ -5,7 +5,7 @@ # filenames just being symlinks to the copies. Real files go in the "real" dir, # symlinks (with original names) go in "syms". RUN: rm -rf %t/real %t/syms -RUN: mkdir %t/real %t/syms +RUN: mkdir -p %t/real %t/syms RUN: cp %p/Inputs/dwarfdump-test.elf-x86-64 %t/real/prog RUN: cp %p/Inputs/dwarfdump-test.elf-x86-64.debuglink %t/real/link RUN: ln -s %t/real/prog %t/syms/dwarfdump-test.elf-x86-64 -- 2.7.4