Home | History | Annotate | Download | only in Modules
      1 // RUN: rm -rf %t
      2 //
      3 // RUN: %clang_cc1 -fmodules -x c++ -fmodules-cache-path=%t \
      4 // RUN:   -fno-implicit-modules -fno-modules-implicit-maps \
      5 // RUN:   -emit-module -fmodule-name=empty -o %t/base.pcm \
      6 // RUN:   %s
      7 //
      8 // RUN: %clang_cc1 -fmodules -x c++ -fmodules-cache-path=%t \
      9 // RUN:   -fno-implicit-modules -fno-modules-implicit-maps \
     10 // RUN:   -emit-module -fmodule-name=empty -o %t/check.pcm \
     11 // RUN:   %s
     12 //
     13 // RUN: diff %t/base.pcm %t/check.pcm
     14 
     15 module empty { header "Inputs/empty.h" export * }
     16