<p dir="ltr">On Jul 30, 2015 10:01 AM, "Pete Cooper" <<a href="mailto:peter_cooper@apple.com">peter_cooper@apple.com</a>> wrote:<br>
><br>
> Author: pete<br>
> Date: Thu Jul 30 11:44:07 2015<br>
> New Revision: 243657<br>
><br>
> URL: <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__llvm.org_viewvc_llvm-2Dproject-3Frev-3D243657-26view-3Drev&d=AwMFaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=BSqEv9KvKMW_Ob8SyngJ70KdZISM_ASROnREeq0cCxk&m=j0x5t9ZWgs2FnHMIJ_XWcGlLtYglznGF4-EGUBBLzpI&s=QCsDZwatllUmnVIHb9QLrOh1R7-B3J3YioY3Ye3ki6w&e=">http://llvm.org/viewvc/llvm-project?rev=243657&view=rev</a><br>
> Log:<br>
> Add fmodules-cache-path to 2 tests which were missing it.<br>
><br>
> These tests were creating a modules.idx file in my clang checkout, not<br>
> the build directory or temp.<br>
><br>
> All the other tests in this directory use -fmodules-cache-path=%t so<br>
> updated these to match.</p>
<p dir="ltr">I think this is a code bug, not a problem in the test. -emit-module should not create a modules.idx file when given -o, nor when no module cache path is specified.</p>
<p dir="ltr">> Modified:<br>
>     cfe/trunk/test/Modules/dependency-gen.modulemap<br>
>     cfe/trunk/test/Modules/stress1.cpp<br>
><br>
> Modified: cfe/trunk/test/Modules/dependency-gen.modulemap<br>
> URL: <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__llvm.org_viewvc_llvm-2Dproject_cfe_trunk_test_Modules_dependency-2Dgen.modulemap-3Frev-3D243657-26r1-3D243656-26r2-3D243657-26view-3Ddiff&d=AwMFaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=BSqEv9KvKMW_Ob8SyngJ70KdZISM_ASROnREeq0cCxk&m=j0x5t9ZWgs2FnHMIJ_XWcGlLtYglznGF4-EGUBBLzpI&s=Rz2rEltTxgl9mZ3ev5fS7KT919dnaEqKsKv9KeBdQ3I&e=">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Modules/dependency-gen.modulemap?rev=243657&r1=243656&r2=243657&view=diff</a><br>
> ==============================================================================<br>
> --- cfe/trunk/test/Modules/dependency-gen.modulemap (original)<br>
> +++ cfe/trunk/test/Modules/dependency-gen.modulemap Thu Jul 30 11:44:07 2015<br>
> @@ -1,7 +1,7 @@<br>
>  // RUN: cd %S<br>
>  // RUN: rm -f %t.cpm %t-base.pcm %t-base.d %t.d<br>
>  // RUN: %clang_cc1 -I. -x c++ -fmodule-name=test-base -fmodules -emit-module -fno-validate-pch -fmodules-strict-decluse Inputs/dependency-gen-base.modulemap -dependency-file %t-base.d -MT %t-base.pcm -o %t-base.pcm -fmodule-map-file-home-is-cwd<br>
> -// RUN: %clang_cc1 -I. -x c++ -fmodule-name=test -fmodules -emit-module -fno-validate-pch -fmodules-strict-decluse -fmodule-file=%t-base.pcm %s -dependency-file %t.d -MT %t.pcm -o %t.pcm -fmodule-map-file-home-is-cwd<br>
> +// RUN: %clang_cc1 -I. -x c++ -fmodule-name=test -fmodules -emit-module -fno-validate-pch -fmodules-strict-decluse -fmodule-file=%t-base.pcm %s -dependency-file %t.d -MT %t.pcm -o %t.pcm -fmodules-cache-path=%t -fmodule-map-file-home-is-cwd<br>
>  // RUN: FileCheck %s < %t.d<br>
>  module "test" {<br>
>    export *<br>
><br>
> Modified: cfe/trunk/test/Modules/stress1.cpp<br>
> URL: <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__llvm.org_viewvc_llvm-2Dproject_cfe_trunk_test_Modules_stress1.cpp-3Frev-3D243657-26r1-3D243656-26r2-3D243657-26view-3Ddiff&d=AwMFaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=BSqEv9KvKMW_Ob8SyngJ70KdZISM_ASROnREeq0cCxk&m=j0x5t9ZWgs2FnHMIJ_XWcGlLtYglznGF4-EGUBBLzpI&s=36C-rmU7ZNW3yTppbI4g3l_qqtHpkkClnhqj-1e0P5E&e=">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Modules/stress1.cpp?rev=243657&r1=243656&r2=243657&view=diff</a><br>
> ==============================================================================<br>
> --- cfe/trunk/test/Modules/stress1.cpp (original)<br>
> +++ cfe/trunk/test/Modules/stress1.cpp Thu Jul 30 11:44:07 2015<br>
> @@ -4,6 +4,7 @@<br>
>  // RUN: %clang_cc1 -fmodules -x c++ -std=c++11 \<br>
>  // RUN:   -I Inputs/stress1 \<br>
>  // RUN:   -fno-implicit-modules \<br>
> +// RUN:   -fmodules-cache-path=%t \<br>
>  // RUN:   -fmodule-map-file-home-is-cwd \<br>
>  // RUN:   -emit-module -fmodule-name=m00 -o %t/m00.pcm \<br>
>  // RUN:   Inputs/stress1/module.modulemap<br>
> @@ -11,6 +12,7 @@<br>
>  // RUN: %clang_cc1 -fmodules -x c++ -std=c++11 \<br>
>  // RUN:   -I Inputs/stress1 \<br>
>  // RUN:   -fno-implicit-modules \<br>
> +// RUN:   -fmodules-cache-path=%t \<br>
>  // RUN:   -fmodule-map-file-home-is-cwd \<br>
>  // RUN:   -emit-module -fmodule-name=m00 -o %t/m00_check.pcm \<br>
>  // RUN:   Inputs/stress1/module.modulemap<br>
> @@ -20,6 +22,7 @@<br>
>  // RUN: %clang_cc1 -fmodules -x c++ -std=c++11 -fdelayed-template-parsing \<br>
>  // RUN:   -I Inputs/stress1 \<br>
>  // RUN:   -fno-implicit-modules \<br>
> +// RUN:   -fmodules-cache-path=%t \<br>
>  // RUN:   -fmodule-map-file-home-is-cwd \<br>
>  // RUN:   -emit-module -fmodule-name=m01 -o %t/m01.pcm \<br>
>  // RUN:   Inputs/stress1/module.modulemap<br>
> @@ -27,6 +30,7 @@<br>
>  // RUN: %clang_cc1 -fmodules -x c++ -std=c++11 -fdelayed-template-parsing \<br>
>  // RUN:   -I Inputs/stress1 \<br>
>  // RUN:   -fno-implicit-modules \<br>
> +// RUN:   -fmodules-cache-path=%t \<br>
>  // RUN:   -fmodule-map-file-home-is-cwd \<br>
>  // RUN:   -emit-module -fmodule-name=m01 -o %t/m01_check.pcm \<br>
>  // RUN:   Inputs/stress1/module.modulemap<br>
> @@ -36,6 +40,7 @@<br>
>  // RUN: %clang_cc1 -fmodules -x c++ -std=c++11 \<br>
>  // RUN:   -I Inputs/stress1 \<br>
>  // RUN:   -fno-implicit-modules \<br>
> +// RUN:   -fmodules-cache-path=%t \<br>
>  // RUN:   -fmodule-map-file-home-is-cwd \<br>
>  // RUN:   -emit-module -fmodule-name=m02 -o %t/m02.pcm \<br>
>  // RUN:   Inputs/stress1/module.modulemap<br>
> @@ -43,6 +48,7 @@<br>
>  // RUN: %clang_cc1 -fmodules -x c++ -std=c++11 \<br>
>  // RUN:   -I Inputs/stress1 \<br>
>  // RUN:   -fno-implicit-modules \<br>
> +// RUN:   -fmodules-cache-path=%t \<br>
>  // RUN:   -fmodule-map-file-home-is-cwd \<br>
>  // RUN:   -emit-module -fmodule-name=m03 -o %t/m03.pcm \<br>
>  // RUN:   Inputs/stress1/module.modulemap<br>
> @@ -50,6 +56,7 @@<br>
>  // RUN: %clang_cc1 -fmodules -x c++ -std=c++11 \<br>
>  // RUN:   -I Inputs/stress1 \<br>
>  // RUN:   -fno-implicit-modules \<br>
> +// RUN:   -fmodules-cache-path=%t \<br>
>  // RUN:   -fmodule-map-file-home-is-cwd \<br>
>  // RUN:   -fmodule-file=%t/m00.pcm \<br>
>  // RUN:   -fmodule-file=%t/m01.pcm \<br>
> @@ -61,6 +68,7 @@<br>
>  // RUN: %clang_cc1 -fmodules -x c++ -std=c++11 \<br>
>  // RUN:   -I Inputs/stress1 \<br>
>  // RUN:   -fno-implicit-modules \<br>
> +// RUN:   -fmodules-cache-path=%t \<br>
>  // RUN:   -fmodule-map-file-home-is-cwd \<br>
>  // RUN:   -fmodule-file=%t/m00.pcm \<br>
>  // RUN:   -fmodule-file=%t/m01.pcm \<br>
> @@ -74,6 +82,7 @@<br>
>  // RUN: %clang_cc1 -fmodules -x c++ -std=c++11 \<br>
>  // RUN:   -I Inputs/stress1 \<br>
>  // RUN:   -fno-implicit-modules \<br>
> +// RUN:   -fmodules-cache-path=%t \<br>
>  // RUN:   -fmodule-map-file-home-is-cwd \<br>
>  // RUN:   -fmodule-map-file=Inputs/stress1/module.modulemap \<br>
>  // RUN:   -fmodule-file=%t/m00.pcm \<br>
> @@ -86,6 +95,7 @@<br>
>  // RUN: %clang_cc1 -fmodules -x c++ -std=c++11 \<br>
>  // RUN:   -I Inputs/stress1 \<br>
>  // RUN:   -fno-implicit-modules \<br>
> +// RUN:   -fmodules-cache-path=%t \<br>
>  // RUN:   -fmodule-map-file-home-is-cwd \<br>
>  // RUN:   -fmodule-map-file=Inputs/stress1/module.modulemap \<br>
>  // RUN:   -fmodule-file=%t/m00.pcm \<br>
><br>
><br>
> _______________________________________________<br>
> cfe-commits mailing list<br>
> <a href="mailto:cfe-commits@cs.uiuc.edu">cfe-commits@cs.uiuc.edu</a><br>
> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits</a><br>
</p>