diff options
author | wtgodbe <wigodbe@microsoft.com> | 2017-01-31 16:03:17 -0800 |
---|---|---|
committer | wtgodbe <wigodbe@microsoft.com> | 2017-01-31 16:03:17 -0800 |
commit | cb16e1af6846f79b80b609d799e8ff6a8d453169 (patch) | |
tree | 8a95b913d3624117aa246797b16233804d4991b0 /tests | |
parent | d227cd0d0e1aad1494f1b0273c86e9d85160c12e (diff) | |
download | coreclr-cb16e1af6846f79b80b609d799e8ff6a8d453169.tar.gz coreclr-cb16e1af6846f79b80b609d799e8ff6a8d453169.tar.bz2 coreclr-cb16e1af6846f79b80b609d799e8ff6a8d453169.zip |
Delete requires_signing files before test archival
Diffstat (limited to 'tests')
-rw-r--r-- | tests/helixprep.proj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/helixprep.proj b/tests/helixprep.proj index 830f45e295..ea71dbadae 100644 --- a/tests/helixprep.proj +++ b/tests/helixprep.proj @@ -16,6 +16,7 @@ <ItemGroup> <TestCmds Include="$(DiscoveryDirectory)\**\*.cmd" ></TestCmds> <XunitDlls Include="$(DiscoveryDirectory)\*\*.XUnitWrapper.dll" ></XunitDlls> + <RequiresSigningFilesToDelete Include="$(DiscoveryDirectory)\**\*.requires_signing" /> </ItemGroup> <!-- Build the platform-specific wrapper to run an individual xunit wrapper --> @@ -43,7 +44,7 @@ DestinationFolder="%(XunitDlls.RootDir)%(XunitDlls.Directory)" /> <Message Text="Deleting '.requires_signing' files to avoid file name lengths exceeding MAX_PATH" Importance="Low" /> - <Delete Files="$(DiscoveryDirectory)\**\*.requires_signing" /> + <Delete Files="@(RequiresSigningFilesToDelete)" /> <MSBuild Projects="helixprep.proj" Properties="BuildPath=%(XunitDlls.RootDir)%(XunitDlls.Directory);ProjectName=%(XunitDlls.Filename);BuildArchiveDir=$(TestWorkingDir)archive\tests\" Targets="ArchiveBuild" /> |