1*0a6a1f1dSLionel Sambuc// Test that the virtual file "__inferred_module.map" doesn't show up as dependency. 2*0a6a1f1dSLionel Sambuc 3*0a6a1f1dSLionel Sambuc// RUN: rm -rf %t-mcp 4*0a6a1f1dSLionel Sambuc// RUN: %clang_cc1 -isysroot %S/Inputs/System -triple x86_64-apple-darwin10 -dependency-file %t.d -MT %s.o -F %S/Inputs -fsyntax-only -fmodules -fmodules-cache-path=%t-mcp %s 5*0a6a1f1dSLionel Sambuc// RUN: FileCheck %s < %t.d 6*0a6a1f1dSLionel Sambuc// CHECK-NOT: __inferred_module 7*0a6a1f1dSLionel Sambuc 8*0a6a1f1dSLionel Sambuc@import Module; 9