13 references to TestOS
RunTests (13)
HelixTestRunner.cs (13)
57var testOS = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? TestOS.Windows 58: RuntimeInformation.IsOSPlatform(OSPlatform.OSX) ? TestOS.Mac 59: TestOS.Linux; 123TestOS testOS, 189TestOS testOS) 191var isUnix = testOS != TestOS.Windows; 224var commandPrefix = testOS != TestOS.Windows ? "./" : "call "; 239TestOS testOS) 241var isUnix = testOS != TestOS.Windows; 242var isMac = testOS == TestOS.Mac; 327static (string FileName, string Content) GetHelixPostCommandContent(TestOS testOS) 329var isUnix = testOS != TestOS.Windows;