From 57bd659f4c6246f4ff3824484f69ebbb4f3b10a7 Mon Sep 17 00:00:00 2001 From: Qstick Date: Mon, 28 Jun 2021 18:53:58 -0400 Subject: [PATCH] New: Even More Mono Cleaning --- frontend/src/System/Status/About/About.js | 10 ----- src/Lidarr.Api.V1/System/SystemModule.cs | 1 - .../Extensions/Pipelines/GZipPipeline.cs | 3 +- .../DiskTests/DiskTransferServiceFixture.cs | 38 ------------------ .../Http/HttpClientFixture.cs | 5 --- .../ProcessProviderFixture.cs | 2 +- .../EnvironmentInfo/PlatformInfo.cs | 40 +------------------ .../GlobalExceptionHandlers.cs | 10 ----- .../Instrumentation/Sentry/SentryTarget.cs | 15 ------- .../Processes/ProcessProvider.cs | 5 --- .../MediaCoverTests/ImageResizerFixture.cs | 5 --- src/NzbDrone.Core/MediaCover/ImageResizer.cs | 6 --- .../ApiTests/ArtistFixture.cs | 13 ------ .../ApiTests/DownloadClientFixture.cs | 8 ---- .../ApiTests/NamingConfigFixture.cs | 10 ----- .../ApiTests/RootFolderFixture.cs | 2 - .../GenericApiFixture.cs | 4 +- .../HttpLogFixture.cs | 2 - .../IntegrationTestBase.cs | 16 -------- .../DiskProviderTests/FreeSpaceFixture.cs | 5 --- .../SymlinkResolverFixture.cs | 13 +----- src/NzbDrone.Test.Common/NzbDroneRunner.cs | 4 -- src/NzbDrone.Test.Common/TestBase.cs | 8 ---- 23 files changed, 5 insertions(+), 220 deletions(-) diff --git a/frontend/src/System/Status/About/About.js b/frontend/src/System/Status/About/About.js index c3755fa93..69b5b02f5 100644 --- a/frontend/src/System/Status/About/About.js +++ b/frontend/src/System/Status/About/About.js @@ -19,7 +19,6 @@ class About extends Component { packageVersion, packageAuthor, isNetCore, - isMono, isDocker, runtimeVersion, migrationVersion, @@ -47,14 +46,6 @@ class About extends Component { /> } - { - isMono && - - } - { isNetCore && , Stream>)WriteGZipStream; + _writeGZipStream = (Action, Stream>)WriteGZipStream; } public void Register(IPipelines pipelines) diff --git a/src/NzbDrone.Common.Test/DiskTests/DiskTransferServiceFixture.cs b/src/NzbDrone.Common.Test/DiskTests/DiskTransferServiceFixture.cs index d830311c7..d966e419c 100644 --- a/src/NzbDrone.Common.Test/DiskTests/DiskTransferServiceFixture.cs +++ b/src/NzbDrone.Common.Test/DiskTests/DiskTransferServiceFixture.cs @@ -437,24 +437,6 @@ namespace NzbDrone.Common.Test.DiskTests Assert.Throws(() => Subject.TransferFolder(source.FullName, destination.FullName, TransferMode.Copy)); } - [Test] - public void CopyFolder_should_not_copy_casesensitive_folder() - { - MonoOnly(); - - WithRealDiskProvider(); - - var original = GetFilledTempFolder(); - var root = new DirectoryInfo(GetTempFilePath()); - var source = new DirectoryInfo(root.FullName + "A/series"); - var destination = new DirectoryInfo(root.FullName + "A/Series"); - - Subject.TransferFolder(original.FullName, source.FullName, TransferMode.Copy); - - // Note: Although technically possible top copy to different case, we're not allowing it - Assert.Throws(() => Subject.TransferFolder(source.FullName, destination.FullName, TransferMode.Copy)); - } - [Test] public void CopyFolder_should_ignore_nfs_temp_file() { @@ -540,26 +522,6 @@ namespace NzbDrone.Common.Test.DiskTests source.FullName.GetActualCasing().Should().Be(destination.FullName); } - [Test] - public void MoveFolder_should_rename_casesensitive_folder() - { - MonoOnly(); - - WithRealDiskProvider(); - - var original = GetFilledTempFolder(); - var root = new DirectoryInfo(GetTempFilePath()); - var source = new DirectoryInfo(root.FullName + "A/series"); - var destination = new DirectoryInfo(root.FullName + "A/Series"); - - Subject.TransferFolder(original.FullName, source.FullName, TransferMode.Copy); - - Subject.TransferFolder(source.FullName, destination.FullName, TransferMode.Move); - - Directory.Exists(source.FullName).Should().Be(false); - Directory.Exists(destination.FullName).Should().Be(true); - } - [Test] public void should_throw_if_destination_is_readonly() { diff --git a/src/NzbDrone.Common.Test/Http/HttpClientFixture.cs b/src/NzbDrone.Common.Test/Http/HttpClientFixture.cs index e41cbb2c7..a05d1821f 100644 --- a/src/NzbDrone.Common.Test/Http/HttpClientFixture.cs +++ b/src/NzbDrone.Common.Test/Http/HttpClientFixture.cs @@ -251,11 +251,6 @@ namespace NzbDrone.Common.Test.Http [Test] public void should_follow_redirects_to_https() { - if (typeof(TDispatcher) == typeof(ManagedHttpDispatcher) && PlatformInfo.IsMono) - { - Assert.Ignore("Will fail on tls1.2 via managed dispatcher, ignore."); - } - var request = new HttpRequestBuilder($"https://{_httpBinHost}/redirect-to") .AddQueryParam("url", $"https://lidarr.audio/") .Build(); diff --git a/src/NzbDrone.Common.Test/ProcessProviderFixture.cs b/src/NzbDrone.Common.Test/ProcessProviderFixture.cs index 6951e2c42..f4c39deae 100644 --- a/src/NzbDrone.Common.Test/ProcessProviderFixture.cs +++ b/src/NzbDrone.Common.Test/ProcessProviderFixture.cs @@ -172,7 +172,7 @@ namespace NzbDrone.Common.Test var processStarted = new ManualResetEventSlim(); string suffix; - if (OsInfo.IsWindows || PlatformInfo.IsMono) + if (OsInfo.IsWindows) { suffix = ".exe"; } diff --git a/src/NzbDrone.Common/EnvironmentInfo/PlatformInfo.cs b/src/NzbDrone.Common/EnvironmentInfo/PlatformInfo.cs index 5c28231fe..3375df2e3 100644 --- a/src/NzbDrone.Common/EnvironmentInfo/PlatformInfo.cs +++ b/src/NzbDrone.Common/EnvironmentInfo/PlatformInfo.cs @@ -1,6 +1,4 @@ -using System; -using System.Reflection; -using System.Text.RegularExpressions; +using System; using Microsoft.Win32; namespace NzbDrone.Common.EnvironmentInfo @@ -19,8 +17,6 @@ namespace NzbDrone.Common.EnvironmentInfo public class PlatformInfo : IPlatformInfo { - private static readonly Regex MonoVersionRegex = new Regex(@"(?<=\W|^)(?\d+\.\d+(\.\d+)?(\.\d+)?)(?=\W)", RegexOptions.Compiled | RegexOptions.IgnoreCase); - private static PlatformType _platform; private static Version _version; @@ -31,7 +27,6 @@ namespace NzbDrone.Common.EnvironmentInfo } public static PlatformType Platform => _platform; - public static bool IsMono => Platform == PlatformType.Mono; public static bool IsDotNet => Platform == PlatformType.DotNet; public static bool IsNetCore => Platform == PlatformType.NetCore; @@ -43,10 +38,6 @@ namespace NzbDrone.Common.EnvironmentInfo { return ".NET"; } - else if (IsMono) - { - return "Mono"; - } else { return ".NET Core"; @@ -61,35 +52,6 @@ namespace NzbDrone.Common.EnvironmentInfo return _version; } - private static Version GetMonoVersion() - { - try - { - var type = Type.GetType("Mono.Runtime"); - - if (type != null) - { - var displayNameMethod = type.GetMethod("GetDisplayName", BindingFlags.NonPublic | BindingFlags.Static); - if (displayNameMethod != null) - { - var displayName = displayNameMethod.Invoke(null, null).ToString(); - var versionMatch = MonoVersionRegex.Match(displayName); - - if (versionMatch.Success) - { - return new Version(versionMatch.Groups["version"].Value); - } - } - } - } - catch (Exception ex) - { - Console.WriteLine("Couldnt get Mono version: " + ex.ToString()); - } - - return new Version(); - } - private static Version GetDotNetVersion() { try diff --git a/src/NzbDrone.Common/Instrumentation/GlobalExceptionHandlers.cs b/src/NzbDrone.Common/Instrumentation/GlobalExceptionHandlers.cs index 6f778d7de..50ede78a5 100644 --- a/src/NzbDrone.Common/Instrumentation/GlobalExceptionHandlers.cs +++ b/src/NzbDrone.Common/Instrumentation/GlobalExceptionHandlers.cs @@ -38,16 +38,6 @@ namespace NzbDrone.Common.Instrumentation return; } - if (PlatformInfo.IsMono) - { - if ((exception is TypeInitializationException && exception.InnerException is DllNotFoundException) || - exception is DllNotFoundException) - { - Logger.Debug(exception, "Minor Fail: " + exception.Message); - return; - } - } - Console.WriteLine("EPIC FAIL: {0}", exception); Logger.Fatal(exception, "EPIC FAIL."); } diff --git a/src/NzbDrone.Common/Instrumentation/Sentry/SentryTarget.cs b/src/NzbDrone.Common/Instrumentation/Sentry/SentryTarget.cs index d6cbf285a..ed1ef48f0 100644 --- a/src/NzbDrone.Common/Instrumentation/Sentry/SentryTarget.cs +++ b/src/NzbDrone.Common/Instrumentation/Sentry/SentryTarget.cs @@ -109,13 +109,6 @@ namespace NzbDrone.Common.Instrumentation.Sentry o.Debug = false; o.DiagnosticsLevel = SentryLevel.Debug; o.Release = BuildInfo.Release; - if (PlatformInfo.IsMono) - { - // Mono 6.0 broke GzipStream.WriteAsync - // TODO: Check specific version - o.RequestBodyCompressionLevel = System.IO.Compression.CompressionLevel.NoCompression; - } - o.BeforeSend = x => SentryCleanser.CleanseEvent(x); o.BeforeBreadcrumb = x => SentryCleanser.CleanseBreadcrumb(x); o.Environment = BuildInfo.Branch; @@ -157,14 +150,6 @@ namespace NzbDrone.Common.Instrumentation.Sentry SentrySdk.ConfigureScope(scope => { scope.SetTag("is_docker", $"{osInfo.IsDocker}"); - - if (osInfo.Name != null && PlatformInfo.IsMono) - { - // Sentry auto-detection of non-Windows platforms isn't that accurate on certain devices. - scope.Contexts.OperatingSystem.Name = osInfo.Name.FirstCharToUpper(); - scope.Contexts.OperatingSystem.RawDescription = osInfo.FullName; - scope.Contexts.OperatingSystem.Version = osInfo.Version.ToString(); - } }); } diff --git a/src/NzbDrone.Common/Processes/ProcessProvider.cs b/src/NzbDrone.Common/Processes/ProcessProvider.cs index 4b8f5e8c6..c616fd75d 100644 --- a/src/NzbDrone.Common/Processes/ProcessProvider.cs +++ b/src/NzbDrone.Common/Processes/ProcessProvider.cs @@ -366,11 +366,6 @@ namespace NzbDrone.Common.Processes private (string Path, string Args) GetPathAndArgs(string path, string args) { - if (PlatformInfo.IsMono && path.EndsWith(".exe", StringComparison.InvariantCultureIgnoreCase)) - { - return ("mono", $"--debug {path} {args}"); - } - if (OsInfo.IsWindows && path.EndsWith(".bat", StringComparison.InvariantCultureIgnoreCase)) { return ("cmd.exe", $"/c {path} {args}"); diff --git a/src/NzbDrone.Core.Test/MediaCoverTests/ImageResizerFixture.cs b/src/NzbDrone.Core.Test/MediaCoverTests/ImageResizerFixture.cs index ea81b7d98..9583171ed 100644 --- a/src/NzbDrone.Core.Test/MediaCoverTests/ImageResizerFixture.cs +++ b/src/NzbDrone.Core.Test/MediaCoverTests/ImageResizerFixture.cs @@ -16,11 +16,6 @@ namespace NzbDrone.Core.Test.MediaCoverTests [SetUp] public void SetUp() { - if (PlatformInfo.IsMono && PlatformInfo.GetVersion() < new Version(5, 8)) - { - Assert.Inconclusive("Not supported on Mono < 5.8"); - } - Mocker.GetMock() .Setup(v => v.FileExists(It.IsAny())) .Returns(s => File.Exists(s)); diff --git a/src/NzbDrone.Core/MediaCover/ImageResizer.cs b/src/NzbDrone.Core/MediaCover/ImageResizer.cs index 9f3dc87c0..ec2eefa78 100644 --- a/src/NzbDrone.Core/MediaCover/ImageResizer.cs +++ b/src/NzbDrone.Core/MediaCover/ImageResizer.cs @@ -21,12 +21,6 @@ namespace NzbDrone.Core.MediaCover { _diskProvider = diskProvider; - // Random segfaults on mono 5.0 and 5.4 - if (PlatformInfo.IsMono && platformInfo.Version < new System.Version(5, 8)) - { - return; - } - _enabled = true; // More conservative memory allocation diff --git a/src/NzbDrone.Integration.Test/ApiTests/ArtistFixture.cs b/src/NzbDrone.Integration.Test/ApiTests/ArtistFixture.cs index 282ce9710..61279a695 100644 --- a/src/NzbDrone.Integration.Test/ApiTests/ArtistFixture.cs +++ b/src/NzbDrone.Integration.Test/ApiTests/ArtistFixture.cs @@ -34,8 +34,6 @@ namespace NzbDrone.Integration.Test.ApiTests [Order(0)] public void add_artist_without_profileid_should_return_badrequest() { - IgnoreOnMonoVersions("5.12", "5.14"); - EnsureNoArtist("f59c5520-5f46-4d2c-b2c4-822eabf53419", "Linkin Park"); var artist = Artist.Lookup("lidarr:f59c5520-5f46-4d2c-b2c4-822eabf53419").Single(); @@ -49,8 +47,6 @@ namespace NzbDrone.Integration.Test.ApiTests [Order(0)] public void add_artist_without_path_should_return_badrequest() { - IgnoreOnMonoVersions("5.12", "5.14"); - EnsureNoArtist("f59c5520-5f46-4d2c-b2c4-822eabf53419", "Linkin Park"); var artist = Artist.Lookup("lidarr:f59c5520-5f46-4d2c-b2c4-822eabf53419").Single(); @@ -109,8 +105,6 @@ namespace NzbDrone.Integration.Test.ApiTests [Test] public void get_artist_by_unknown_id_should_return_404() { - IgnoreOnMonoVersions("5.12", "5.14"); - var result = Artist.InvalidGet(1000000); } @@ -141,18 +135,11 @@ namespace NzbDrone.Integration.Test.ApiTests artist.Monitored.Should().BeFalse(); - //artist.Seasons.First().Monitored.Should().BeFalse(); artist.Monitored = true; - //artist.Seasons.ForEach(season => - //{ - // season.Monitored = true; - //}); var result = Artist.Put(artist); result.Monitored.Should().BeTrue(); - - //result.Seasons.First().Monitored.Should().BeTrue(); } [Test] diff --git a/src/NzbDrone.Integration.Test/ApiTests/DownloadClientFixture.cs b/src/NzbDrone.Integration.Test/ApiTests/DownloadClientFixture.cs index 4fe766393..e4f018ad7 100644 --- a/src/NzbDrone.Integration.Test/ApiTests/DownloadClientFixture.cs +++ b/src/NzbDrone.Integration.Test/ApiTests/DownloadClientFixture.cs @@ -11,8 +11,6 @@ namespace NzbDrone.Integration.Test.ApiTests [Order(0)] public void add_downloadclient_without_name_should_return_badrequest() { - IgnoreOnMonoVersions("5.12", "5.14"); - EnsureNoDownloadClient(); var schema = DownloadClients.Schema().First(v => v.Implementation == "UsenetBlackhole"); @@ -28,8 +26,6 @@ namespace NzbDrone.Integration.Test.ApiTests [Order(0)] public void add_downloadclient_without_nzbfolder_should_return_badrequest() { - IgnoreOnMonoVersions("5.12", "5.14"); - EnsureNoDownloadClient(); var schema = DownloadClients.Schema().First(v => v.Implementation == "UsenetBlackhole"); @@ -45,8 +41,6 @@ namespace NzbDrone.Integration.Test.ApiTests [Order(0)] public void add_downloadclient_without_watchfolder_should_return_badrequest() { - IgnoreOnMonoVersions("5.12", "5.14"); - EnsureNoDownloadClient(); var schema = DownloadClients.Schema().First(v => v.Implementation == "UsenetBlackhole"); @@ -101,8 +95,6 @@ namespace NzbDrone.Integration.Test.ApiTests [Test] public void get_downloadclient_by_unknown_id_should_return_404() { - IgnoreOnMonoVersions("5.12", "5.14"); - var result = DownloadClients.InvalidGet(1000000); } diff --git a/src/NzbDrone.Integration.Test/ApiTests/NamingConfigFixture.cs b/src/NzbDrone.Integration.Test/ApiTests/NamingConfigFixture.cs index afdb65865..b21188916 100644 --- a/src/NzbDrone.Integration.Test/ApiTests/NamingConfigFixture.cs +++ b/src/NzbDrone.Integration.Test/ApiTests/NamingConfigFixture.cs @@ -35,8 +35,6 @@ namespace NzbDrone.Integration.Test.ApiTests [Test] public void should_get_bad_request_if_standard_format_is_empty() { - IgnoreOnMonoVersions("5.12", "5.14"); - var config = NamingConfig.GetSingle(); config.RenameTracks = true; config.StandardTrackFormat = ""; @@ -48,8 +46,6 @@ namespace NzbDrone.Integration.Test.ApiTests [Test] public void should_get_bad_request_if_standard_format_doesnt_contain_track_number_and_title() { - IgnoreOnMonoVersions("5.12", "5.14"); - var config = NamingConfig.GetSingle(); config.RenameTracks = true; config.StandardTrackFormat = "{track:00}"; @@ -61,8 +57,6 @@ namespace NzbDrone.Integration.Test.ApiTests [Test] public void should_not_require_format_when_rename_tracks_is_false() { - IgnoreOnMonoVersions("5.12", "5.14"); - var config = NamingConfig.GetSingle(); config.RenameTracks = false; config.StandardTrackFormat = ""; @@ -74,8 +68,6 @@ namespace NzbDrone.Integration.Test.ApiTests [Test] public void should_require_format_when_rename_tracks_is_true() { - IgnoreOnMonoVersions("5.12", "5.14"); - var config = NamingConfig.GetSingle(); config.RenameTracks = true; config.StandardTrackFormat = ""; @@ -87,8 +79,6 @@ namespace NzbDrone.Integration.Test.ApiTests [Test] public void should_get_bad_request_if_artist_folder_format_does_not_contain_artist_name() { - IgnoreOnMonoVersions("5.12", "5.14"); - var config = NamingConfig.GetSingle(); config.RenameTracks = true; config.ArtistFolderFormat = "This and That"; diff --git a/src/NzbDrone.Integration.Test/ApiTests/RootFolderFixture.cs b/src/NzbDrone.Integration.Test/ApiTests/RootFolderFixture.cs index 5abb4147f..4db96a8a9 100644 --- a/src/NzbDrone.Integration.Test/ApiTests/RootFolderFixture.cs +++ b/src/NzbDrone.Integration.Test/ApiTests/RootFolderFixture.cs @@ -42,8 +42,6 @@ namespace NzbDrone.Integration.Test.ApiTests [Test] public void invalid_path_should_return_bad_request() { - IgnoreOnMonoVersions("5.12", "5.14"); - var rootFolder = new RootFolderResource { Path = "invalid_path" diff --git a/src/NzbDrone.Integration.Test/GenericApiFixture.cs b/src/NzbDrone.Integration.Test/GenericApiFixture.cs index 63c6e9dbc..a42a23055 100644 --- a/src/NzbDrone.Integration.Test/GenericApiFixture.cs +++ b/src/NzbDrone.Integration.Test/GenericApiFixture.cs @@ -1,4 +1,4 @@ -using System.Net; +using System.Net; using FluentAssertions; using NUnit.Framework; using RestSharp; @@ -33,8 +33,6 @@ namespace NzbDrone.Integration.Test [TestCase("application/junk")] public void should_get_unacceptable_with_accept_header(string header) { - IgnoreOnMonoVersions("5.12", "5.14"); - var request = new RestRequest("system/status") { RequestFormat = DataFormat.None diff --git a/src/NzbDrone.Integration.Test/HttpLogFixture.cs b/src/NzbDrone.Integration.Test/HttpLogFixture.cs index 6ced140dc..15e9fa949 100644 --- a/src/NzbDrone.Integration.Test/HttpLogFixture.cs +++ b/src/NzbDrone.Integration.Test/HttpLogFixture.cs @@ -11,8 +11,6 @@ namespace NzbDrone.Integration.Test [Test] public void should_log_on_error() { - IgnoreOnMonoVersions("5.12", "5.14"); - var config = HostConfig.Get(1); config.LogLevel = "Trace"; HostConfig.Put(config); diff --git a/src/NzbDrone.Integration.Test/IntegrationTestBase.cs b/src/NzbDrone.Integration.Test/IntegrationTestBase.cs index 522e353c7..10ce51afb 100644 --- a/src/NzbDrone.Integration.Test/IntegrationTestBase.cs +++ b/src/NzbDrone.Integration.Test/IntegrationTestBase.cs @@ -163,22 +163,6 @@ namespace NzbDrone.Integration.Test } } - protected void IgnoreOnMonoVersions(params string[] version_strings) - { - if (!PlatformInfo.IsMono) - { - return; - } - - var current = PlatformInfo.GetVersion(); - var versions = version_strings.Select(x => new Version(x)).ToList(); - - if (versions.Any(x => x.Major == current.Major && x.Minor == current.Minor)) - { - throw new IgnoreException($"Ignored on mono {PlatformInfo.GetVersion()}"); - } - } - public string GetTempDirectory(params string[] args) { var path = Path.Combine(TempDirectory, Path.Combine(args)); diff --git a/src/NzbDrone.Mono.Test/DiskProviderTests/FreeSpaceFixture.cs b/src/NzbDrone.Mono.Test/DiskProviderTests/FreeSpaceFixture.cs index 28e162410..f23673217 100644 --- a/src/NzbDrone.Mono.Test/DiskProviderTests/FreeSpaceFixture.cs +++ b/src/NzbDrone.Mono.Test/DiskProviderTests/FreeSpaceFixture.cs @@ -10,11 +10,6 @@ namespace NzbDrone.Mono.Test.DiskProviderTests [Platform(Exclude = "Win")] public class FreeSpaceFixture : FreeSpaceFixtureBase { - public FreeSpaceFixture() - { - MonoOnly(); - } - [SetUp] public void Setup() { diff --git a/src/NzbDrone.Mono.Test/DiskProviderTests/SymlinkResolverFixture.cs b/src/NzbDrone.Mono.Test/DiskProviderTests/SymlinkResolverFixture.cs index d6d783556..1f3e9de71 100644 --- a/src/NzbDrone.Mono.Test/DiskProviderTests/SymlinkResolverFixture.cs +++ b/src/NzbDrone.Mono.Test/DiskProviderTests/SymlinkResolverFixture.cs @@ -1,11 +1,5 @@ -using System; -using System.Collections.Generic; using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; using FluentAssertions; -using Mono.Posix; using Mono.Unix; using NUnit.Framework; using NzbDrone.Mono.Disk; @@ -14,14 +8,9 @@ using NzbDrone.Test.Common; namespace NzbDrone.Mono.Test.DiskProviderTests { [TestFixture] - [Platform("Mono")] + [Platform(Exclude = "Win")] public class SymbolicLinkResolverFixture : TestBase { - public SymbolicLinkResolverFixture() - { - MonoOnly(); - } - [Test] public void should_follow_nested_symlinks() { diff --git a/src/NzbDrone.Test.Common/NzbDroneRunner.cs b/src/NzbDrone.Test.Common/NzbDroneRunner.cs index 2b6b2d353..869ddf554 100644 --- a/src/NzbDrone.Test.Common/NzbDroneRunner.cs +++ b/src/NzbDrone.Test.Common/NzbDroneRunner.cs @@ -45,10 +45,6 @@ namespace NzbDrone.Test.Common { lidarrConsoleExe = "Lidarr.Console.exe"; } - else if (PlatformInfo.IsMono) - { - lidarrConsoleExe = "Lidarr.exe"; - } else { lidarrConsoleExe = "Lidarr"; diff --git a/src/NzbDrone.Test.Common/TestBase.cs b/src/NzbDrone.Test.Common/TestBase.cs index 379ba4250..6768856d0 100644 --- a/src/NzbDrone.Test.Common/TestBase.cs +++ b/src/NzbDrone.Test.Common/TestBase.cs @@ -166,14 +166,6 @@ namespace NzbDrone.Test.Common } } - protected void MonoOnly() - { - if (!PlatformInfo.IsMono) - { - throw new IgnoreException("mono specific test"); - } - } - protected void NotBsd() { if (OsInfo.Os == Os.Bsd)