diff --git a/tests/xharness/Jenkins.cs b/tests/xharness/Jenkins.cs index c9bcd4d653..ec726fcce3 100644 --- a/tests/xharness/Jenkins.cs +++ b/tests/xharness/Jenkins.cs @@ -13,6 +13,7 @@ namespace xharness { public Harness Harness; public bool IncludeClassic; + public bool IncludeBcl; public string LogDirectory { get { @@ -95,6 +96,9 @@ namespace xharness if (!project.IsExecutableProject) continue; + if (!IncludeBcl && project.Path.Contains ("bcl-test")) + continue; + var build = new XBuildTask () { Jenkins = this,