2014-10-01 07:10:19 +08:00
|
|
|
// RUN: %clang -### %s 2>&1 | FileCheck -check-prefix=CHECK-NO-MODULES %s
|
2012-01-18 23:19:58 +08:00
|
|
|
// RUN: %clang -fcxx-modules -### %s 2>&1 | FileCheck -check-prefix=CHECK-NO-MODULES %s
|
2014-10-01 07:10:19 +08:00
|
|
|
// RUN: %clang -fmodules -fno-cxx-modules -### %s 2>&1 | FileCheck -check-prefix=CHECK-NO-MODULES %s
|
2012-01-18 23:19:58 +08:00
|
|
|
// CHECK-NO-MODULES-NOT: -fmodules
|
|
|
|
|
2014-10-01 07:10:19 +08:00
|
|
|
// RUN: %clang -fmodules -### %s 2>&1 | FileCheck -check-prefix=CHECK-HAS-MODULES %s
|
|
|
|
// RUN: %clang -fmodules -fno-cxx-modules -fcxx-modules -### %s 2>&1 | FileCheck -check-prefix=CHECK-HAS-MODULES %s
|
2012-01-18 23:19:58 +08:00
|
|
|
// CHECK-HAS-MODULES: -fmodules
|
2015-06-16 08:20:23 +08:00
|
|
|
|
|
|
|
// RUN: %clang -### %s 2>&1 | FileCheck -check-prefix=CHECK-NO-MAPS %s
|
|
|
|
// RUN: %clang -fimplicit-module-maps -### %s 2>&1 | FileCheck -check-prefix=CHECK-HAS-MAPS %s
|
|
|
|
// RUN: %clang -fmodules -### %s 2>&1 | FileCheck -check-prefix=CHECK-HAS-MAPS %s
|
|
|
|
// RUN: %clang -fmodules -fno-implicit-module-maps -### %s 2>&1 | FileCheck -check-prefix=CHECK-NO-MAPS %s
|
|
|
|
// CHECK-HAS-MAPS: -fimplicit-module-maps
|
|
|
|
// CHECK-NO-MAPS-NOT: -fimplicit-module-maps
|