Skip to content

Commit

Permalink
Commented out Core CLR/Linux only setup stuff.
Browse files Browse the repository at this point in the history
  • Loading branch information
brywang-msft committed Jan 10, 2017
1 parent c7ec6a2 commit edd9f11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
7 changes: 2 additions & 5 deletions Test/run-tests.ps1
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ function New-DirectoryIfNotExist {


if(-not (Test-Path $dir)){ if(-not (Test-Path $dir)){
$null = New-Item -Path $dir -ItemType Directory -Force $null = New-Item -Path $dir -ItemType Directory -Force
$true
} else {
$false
} }
} }


Expand Down Expand Up @@ -262,7 +259,7 @@ if ($testframework -eq "coreclr")


$powershellFolder = "$Env:ProgramFiles\PowerShell\$powershellVersion" $powershellFolder = "$Env:ProgramFiles\PowerShell\$powershellVersion"
Write-host ("PowerShell Folder '{0}'" -f $powershellFolder) Write-host ("PowerShell Folder '{0}'" -f $powershellFolder)

<# Note: Disabled while Core CLR/Linux is disabled for DSC testing
# Setup MMI for Core CLR # Setup MMI for Core CLR
Write-Host "Setting up Microsoft Management Infrastructure for Core CLR" Write-Host "Setting up Microsoft Management Infrastructure for Core CLR"
$mmiDownloadLocation = "https://powershell.myget.org/F/powershell-core/api/v2/package/Microsoft.Management.Infrastructure/1.0.0-alpha05" $mmiDownloadLocation = "https://powershell.myget.org/F/powershell-core/api/v2/package/Microsoft.Management.Infrastructure/1.0.0-alpha05"
Expand All @@ -276,7 +273,7 @@ if ($testframework -eq "coreclr")
Install-Package System.Runtime.Serialization.Xml -Source "TestNugetSource" Install-Package System.Runtime.Serialization.Xml -Source "TestNugetSource"
Install-Package System.Threading.ThreadPool -Source "TestNugetSource" Install-Package System.Threading.ThreadPool -Source "TestNugetSource"
Install-Package System.Security.SecureString -Source "TestNugetSource" Install-Package System.Security.SecureString -Source "TestNugetSource"
Install-Package Microsoft.Management.Infrastructure -Source "TestBinPackages" Install-Package Microsoft.Management.Infrastructure -Source "TestBinPackages"#>
} }
else else
{ {
Expand Down
3 changes: 2 additions & 1 deletion tools/download.sh
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ if [[ "$success" != 0 ]]; then
exit "$success" exit "$success"
fi fi


: '
case "$OSTYPE" in case "$OSTYPE" in
linux*) linux*)
# Install OMI and DSC for Linux # Install OMI and DSC for Linux
Expand Down Expand Up @@ -250,4 +251,4 @@ case "$OSTYPE" in
;; ;;
darwin*) darwin*)
# TODO: Need to do anything here? # TODO: Need to do anything here?
esac esac'

0 comments on commit edd9f11

Please sign in to comment.