brintos

brintos / llvm-project-archived public Read only

0
0
Text · 469 B · 965aea1 Raw
13 lines · cpp
1// RUN: rm -rf %t2// RUN: mkdir %t3// RUN: cd %t4// RUN: echo 'module X {}' > %t/x5// RUN: echo 'module Y {}' > %t/y6//7// RUN: %clang_cc1 -emit-module -fmodules -fmodule-name=X %t/x -x c++ -o %t/x.pcm8// RUN: %clang_cc1 -emit-module -fmodules -fmodule-name=Y %t/y -x c++ -o %t/y.pcm9// RUN: %clang_cc1 -fmodules -fmodule-file=%t/x.pcm -fmodule-file=%t/y.pcm -x c++ /dev/null -fsyntax-only10//11// RUN: not test -f %t/modules.timestamp12// RUN: not test -f %t/modules.idx13