Skip to content

Instantly share code, notes, and snippets.

@mandel-macaque
Last active March 5, 2020 18:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mandel-macaque/22b51f03f84163e99327aec09a61634b to your computer and use it in GitHub Desktop.
Save mandel-macaque/22b51f03f84163e99327aec09a61634b to your computer and use it in GitHub Desktop.
diff --git a/tests/xharness/Jenkins.cs b/tests/xharness/Jenkins.cs
index 37bb3319e..863e18117 100644
--- a/tests/xharness/Jenkins.cs
+++ b/tests/xharness/Jenkins.cs
@@ -39,7 +39,6 @@ namespace Xharness
public bool IncludeOldSimulatorTests;
public bool IncludeDevice;
public bool IncludeXtro;
- public bool IncludeCecil;
public bool IncludeDocs;
public bool IncludeBCLxUnit;
public bool IncludeBCLNUnit;
@@ -756,11 +755,6 @@ namespace Xharness
"src",
"Make.config",
};
- var cecil_prefixes = new string [] {
- "tests/cecil-tests",
- "src",
- "Make.config",
- };
SetEnabled (files, mtouch_prefixes, "mtouch", ref IncludeMtouch);
SetEnabled (files, mmp_prefixes, "mmp", ref IncludeMmpTest);
@@ -768,7 +762,6 @@ namespace Xharness
SetEnabled (files, btouch_prefixes, "btouch", ref IncludeBtouch);
SetEnabled (files, mac_binding_project, "mac-binding-project", ref IncludeMacBindingProject);
SetEnabled (files, xtro_prefixes, "xtro", ref IncludeXtro);
- SetEnabled (files, cecil_prefixes, "cecil", ref IncludeCecil);
}
void SetEnabled (IEnumerable<string> files, string [] prefixes, string testname, ref bool value)
@@ -824,7 +817,6 @@ namespace Xharness
SetEnabled (labels, "ios-extensions", ref IncludeiOSExtensions);
SetEnabled (labels, "device", ref IncludeDevice);
SetEnabled (labels, "xtro", ref IncludeXtro);
- SetEnabled (labels, "cecil", ref IncludeCecil);
SetEnabled (labels, "old-simulator", ref IncludeOldSimulatorTests);
SetEnabled (labels, "all", ref IncludeAll);
@@ -1152,26 +1144,6 @@ namespace Xharness
};
Tasks.Add (runXtroReporter);
- var buildCecilTests = new MakeTask {
- Jenkins = this,
- Platform = TestPlatform.All,
- TestName = "Cecil",
- Target = "build",
- WorkingDirectory = Path.Combine (Harness.RootDirectory, "cecil-tests"),
- Ignored = !IncludeCecil,
- Timeout = TimeSpan.FromMinutes (5),
- };
- var runCecilTests = new NUnitExecuteTask (buildCecilTests) {
- TestLibrary = Path.Combine (buildCecilTests.WorkingDirectory, "bin", "Debug", "cecil-tests.dll"),
- TestProject = new TestProject (Path.Combine (buildCecilTests.WorkingDirectory, "cecil-tests.csproj")),
- Platform = TestPlatform.iOS,
- TestName = "Cecil-based tests",
- Timeout = TimeSpan.FromMinutes (5),
- Ignored = !IncludeCecil,
- InProcess = true,
- };
- Tasks.Add (runCecilTests);
-
var runDocsTests = new MakeTask {
Jenkins = this,
Platform = TestPlatform.All,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment