From: Frederic Riss Date: Mon, 31 Aug 2015 05:16:30 +0000 (+0000) Subject: [dsymutil] Fix testcase. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b70b4156adc57c44db0e8c3b7ad621cb061a910f;p=oota-llvm.git [dsymutil] Fix testcase. This testcase required 2 copies of the same file, and the second copy was missing. It was currently working because of a bug I'm about to fix. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@246411 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/tools/dsymutil/Inputs/odr-uniquing/2.o b/test/tools/dsymutil/Inputs/odr-uniquing/2.o new file mode 100644 index 00000000000..c5209303005 Binary files /dev/null and b/test/tools/dsymutil/Inputs/odr-uniquing/2.o differ diff --git a/test/tools/dsymutil/X86/odr-uniquing.cpp b/test/tools/dsymutil/X86/odr-uniquing.cpp index e1932d41d8a..bb7ae50a2c7 100644 --- a/test/tools/dsymutil/X86/odr-uniquing.cpp +++ b/test/tools/dsymutil/X86/odr-uniquing.cpp @@ -1,6 +1,6 @@ /* Compile with: clang -g -c odr-uniquing.cpp -o odr-uniquing/1.o - + cp odr-uniquing/1.o odr-uniquing/2.o The aim of these test is to check that all the 'type types' that should be uniqued through the ODR really are.