Home | History | Annotate | Download | only in Modules
      1 // RUN: rm -rf %t
      2 // RUN: mkdir %t
      3 // RUN: echo 'extern int some_long_variable_name;' > %t/x.h
      4 // RUN: echo 'extern int some_long_variable_name;' > %t/y.h
      5 // RUN: echo 'module X { header "x.h" } module Y { header "y.h" }' > %t/map
      6 // RUN: %clang_cc1 -fmodules -x c++ -fmodule-name=X %t/map -emit-module -o %t/x.pcm
      7 // RUN: %clang_cc1 -fmodules -x c++ -fmodule-name=Y %t/map -fmodule-file=%t/x.pcm -emit-module -o %t/y.pcm
      8 // RUN: cat %t/y.pcm | FileCheck %s
      9 //
     10 // CHECK-NOT: some_long_variable_name
     11