Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/guiunit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan McGovern <alan@xamarin.com>2013-07-17 19:04:42 +0400
committerAlan McGovern <alan@xamarin.com>2013-07-17 19:04:42 +0400
commitc275e444e523e9374370dcceb8d5eec13e18aadc (patch)
treec4717c9afb208acaa809f89ba038f5f5937e1c88
parent8ad746c37af4209beaf5378682397fdd7e9ba695 (diff)
Return 0 for success
-rw-r--r--src/framework/MacTestListener.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/framework/MacTestListener.cs b/src/framework/MacTestListener.cs
index 8e46b9c..4e36e24 100644
--- a/src/framework/MacTestListener.cs
+++ b/src/framework/MacTestListener.cs
@@ -63,7 +63,7 @@ namespace MacUnit
}
}
new MacTestRunner ().Execute (args);
- return 1;
+ return 0;
}
private CommandLineOptions commandLineOptions;