[llvm] r246411 - [dsymutil] Fix testcase.

Frederic Riss via llvm-commits llvm-commits at lists.llvm.org
Sun Aug 30 22:16:31 PDT 2015


Author: friss
Date: Mon Aug 31 00:16:30 2015
New Revision: 246411

URL: http://llvm.org/viewvc/llvm-project?rev=246411&view=rev
Log:
[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.

Added:
    llvm/trunk/test/tools/dsymutil/Inputs/odr-uniquing/2.o
Modified:
    llvm/trunk/test/tools/dsymutil/X86/odr-uniquing.cpp

Added: llvm/trunk/test/tools/dsymutil/Inputs/odr-uniquing/2.o
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/tools/dsymutil/Inputs/odr-uniquing/2.o?rev=246411&view=auto
==============================================================================
Binary files llvm/trunk/test/tools/dsymutil/Inputs/odr-uniquing/2.o (added) and llvm/trunk/test/tools/dsymutil/Inputs/odr-uniquing/2.o Mon Aug 31 00:16:30 2015 differ

Modified: llvm/trunk/test/tools/dsymutil/X86/odr-uniquing.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/tools/dsymutil/X86/odr-uniquing.cpp?rev=246411&r1=246410&r2=246411&view=diff
==============================================================================
--- llvm/trunk/test/tools/dsymutil/X86/odr-uniquing.cpp (original)
+++ llvm/trunk/test/tools/dsymutil/X86/odr-uniquing.cpp Mon Aug 31 00:16:30 2015
@@ -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.
    




More information about the llvm-commits mailing list