aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Modules/module-map-path-hash.cpp
AgeCommit message (Collapse)AuthorFilesLines
2015-09-02[modules] Tighten up this test a bit.Sean Silva1-5/+6
llvm-svn: 246702
2015-08-17[modules] When explicitly building a module file, don't include timestamps inRichard Smith1-1/+1
the produced pcm file for stable file creation across distributed build systems. llvm-svn: 245199
2015-07-30Enable accidentally-disabled tests.Sean Silva1-2/+2
I think I was isolating the failure in the last RUN: line during development, and forgot to re-enable the others. llvm-svn: 243624
2015-07-30Avoid failure to canonicalize '..'.Sean Silva1-0/+9
Also fix completely broken and untested code which was hiding the primary bug. The !LLVM_ON_UNIX branch of the ifdef was actually a no-op. I ran into this in the wild. It was causing failures in our SDK build. Ideally we'd have a perfect llvm::sys::fs::canonical, but at least this is a step in the right direction, and fixes an obviously broken case. In some sense the test case I've added here is an integration test. We should have these routines thoroughly unit tested in llvm::sys::fs. llvm-svn: 243597