Merge branch 'release' into dev

This commit is contained in:
moozzyk 2016-04-13 10:58:44 -07:00
commit adf98e0685
3 changed files with 25 additions and 5 deletions

View File

@ -0,0 +1,3 @@
using Xunit;
[assembly: CollectionBehavior(CollectionBehavior.CollectionPerAssembly)]

View File

@ -67,12 +67,18 @@ namespace Microsoft.DotNet.Watcher.FunctionalTests
var projectFile = Path.Combine(WorkFolder, projectName, "project.json");
Console.WriteLine($"Adding {toolName} to {projectFile}");
var versionSuffix = Environment.GetEnvironmentVariable("DOTNET_BUILD_VERSION");
if (string.IsNullOrEmpty(versionSuffix))
{
versionSuffix = "*";
}
var projectJson = JObject.Parse(File.ReadAllText(projectFile));
projectJson.Add("tools",
new JObject(
new JProperty(toolName,
new JObject(
new JProperty("version", "1.0.0-*"),
new JProperty("version", "1.0.0-" + versionSuffix),
new JProperty("imports", "portable-net451+win8")))));
File.WriteAllText(projectFile, projectJson.ToString());

View File

@ -14,6 +14,8 @@ namespace Microsoft.DotNet.Watcher.FunctionalTests
{
var watch = new Stopwatch();
Exception lastException = null;
watch.Start();
while (watch.Elapsed < timeout)
{
@ -23,14 +25,21 @@ namespace Microsoft.DotNet.Watcher.FunctionalTests
watch.Stop();
return;
}
catch
catch (Exception e)
{
lastException = e;
}
Thread.Sleep(500);
}
watch.Stop();
throw new Exception($"{file} is not readable.");
if (lastException != null)
{
Console.WriteLine("Last exception:");
Console.WriteLine(lastException);
}
throw new InvalidOperationException($"{file} is not readable.");
}
public static void WaitForProcessToStop(int processId, TimeSpan timeout, bool expectedToStop, string errorMessage)
@ -41,8 +50,10 @@ namespace Microsoft.DotNet.Watcher.FunctionalTests
{
process = Process.GetProcessById(processId);
}
catch
catch (Exception e)
{
Console.WriteLine("Could not get process id:");
Console.WriteLine(e);
}
var watch = new Stopwatch();
@ -60,7 +71,7 @@ namespace Microsoft.DotNet.Watcher.FunctionalTests
bool isStopped = process == null || process.HasExited;
if (isStopped != expectedToStop)
{
throw new Exception(errorMessage);
throw new InvalidOperationException(errorMessage);
}
}
}