Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.30
2.1.31
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,10 @@ namespace VirtualClient.Actions
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Moq;
using NUnit.Framework;
using VirtualClient.Common;
using VirtualClient.Contracts;
Expand All @@ -36,7 +33,7 @@ public void SetupFixture()
}

[Test]
[TestCase("Compete-OPENSSL-TLS.json")]
[TestCase("PERF-CPU-OPENSSL-TLS.json")]
public async Task TlsOpenSslClientCreatesExpectedStateAndExecutesWorkload(string profile)
{
List<string> expectedCommands = new List<string>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,14 @@
namespace VirtualClient.Actions
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using AutoFixture;
using Moq;
using NUnit.Framework;
using VirtualClient.Common;
using VirtualClient.Contracts;

[TestFixture]
[Category("Functional")]
public class TlsOpenSslServerProfileTests
Expand All @@ -37,7 +32,7 @@ public void SetupFixture()
}

[Test]
[TestCase("Compete-OPENSSL-TLS.json")]
[TestCase("PERF-CPU-OPENSSL-TLS.json")]
public async Task TlsOpenSslServerWorkloadProfileInstallsTheExpectedDependenciesOnUnixPlatform(string profile)
{
// Setup the expectations for the workload
Expand All @@ -60,7 +55,7 @@ public async Task TlsOpenSslServerWorkloadProfileInstallsTheExpectedDependencies
}

[Test]
[TestCase("Compete-OPENSSL-TLS.json")]
[TestCase("PERF-CPU-OPENSSL-TLS.json")]
public void TlsOpenSslServerWorkloadProfileActionsWillNotBeExecutedIfTheWorkloadPackageDoesNotExist(string profile)
{
// We ensure the workload package does not exist.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
-->
<Target Name="CopyProfilesToOutputDirectory" AfterTargets="Build">
<ItemGroup>
<ProfileFiles Include="profiles\*.*" />
<ProfileFiles Include="profiles\**\*.*" />
</ItemGroup>

<Copy SourceFiles="@(ProfileFiles)" DestinationFiles="@(ProfileFiles->'$(OutputPath)profiles\%(RecursiveDir)%(Filename)%(Extension)')" />
Expand Down
Loading
Loading