You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by bo...@apache.org on 2015/04/22 22:34:53 UTC

[1/3] storm git commit: Updating test-ns.py

Repository: storm
Updated Branches:
  refs/heads/master fea914c86 -> 5a19c6843


Updating test-ns.py


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/5af2e3c7
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/5af2e3c7
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/5af2e3c7

Branch: refs/heads/master
Commit: 5af2e3c784e6dae97fb69521c06898c1be8e5d00
Parents: a7c8310
Author: Kyle Nusbaum <Ky...@gmail.com>
Authored: Thu Apr 16 11:35:44 2015 -0500
Committer: Kyle Nusbaum <Ky...@gmail.com>
Committed: Thu Apr 16 11:35:44 2015 -0500

----------------------------------------------------------------------
 dev-tools/test-ns.py | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/5af2e3c7/dev-tools/test-ns.py
----------------------------------------------------------------------
diff --git a/dev-tools/test-ns.py b/dev-tools/test-ns.py
index 206fd6c..87eca14 100755
--- a/dev-tools/test-ns.py
+++ b/dev-tools/test-ns.py
@@ -9,9 +9,26 @@ os.chdir("storm-core")
 ns = sys.argv[1]
 pipe = Popen(["mvn", "clojure:repl"], stdin=PIPE)
 
-pipe.stdin.write("(do (use 'clojure.test) (require '%s :reload-all) (run-tests '%s))\n" % (ns, ns))
+
+pipe.stdin.write("""
+(do
+  (use 'clojure.test)
+  (require '%s :reload-all)
+  (let [results (run-tests '%s)]
+    (println results)
+    (if (or
+         (> (:fail results) 0)
+         (> (:error results) 0))
+      (System/exit 1)
+      (System/exit 0))))
+""" % (ns, ns))
+
+
+
 pipe.stdin.write("\n")
 pipe.stdin.close()
 pipe.wait()
 
 os.chdir("..")
+
+sys.exit(pipe.returncode)


[2/3] storm git commit: Merge branch 'STORM-787' of https://github.com/knusbaum/incubator-storm into STORM-787

Posted by bo...@apache.org.
Merge branch 'STORM-787' of https://github.com/knusbaum/incubator-storm into STORM-787

STORM-787: test-ns should announce test failures with 'BUILD FAILURE'


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/665c0610
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/665c0610
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/665c0610

Branch: refs/heads/master
Commit: 665c0610eeac20decfc00db78a29b348b2daff6d
Parents: fea914c 5af2e3c
Author: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Authored: Wed Apr 22 15:33:02 2015 -0500
Committer: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Committed: Wed Apr 22 15:33:02 2015 -0500

----------------------------------------------------------------------
 dev-tools/test-ns.py | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)
----------------------------------------------------------------------



[3/3] storm git commit: Added STORM-787 to changelog

Posted by bo...@apache.org.
Added STORM-787 to changelog


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/5a19c684
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/5a19c684
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/5a19c684

Branch: refs/heads/master
Commit: 5a19c6843501f597d5ddb6d77c4abf4188ec86bd
Parents: 665c061
Author: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Authored: Wed Apr 22 15:33:33 2015 -0500
Committer: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Committed: Wed Apr 22 15:33:33 2015 -0500

----------------------------------------------------------------------
 CHANGELOG.md | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/5a19c684/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f0e7ce9..bf712ad 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
 ## 0.11.0
+ * STORM-787: test-ns should announce test failures with 'BUILD FAILURE'
  * STORM-789: Send more topology context to Multi-Lang components via initial handshake
  * STORM-792: Missing documentation in backtype.storm.generated.Nimbus
  * STORM-766: Include version info in the service page