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/03/12 00:22:16 UTC

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

Repository: storm
Updated Branches:
  refs/heads/master a05ba34c8 -> ec13a14f3


Adding 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/b7bfdde8
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/b7bfdde8
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/b7bfdde8

Branch: refs/heads/master
Commit: b7bfdde8714c39e7556ac34915817dd2a8879356
Parents: 182a734
Author: Kyle Nusbaum <kn...@yahoo-inc.com>
Authored: Fri Feb 27 12:51:04 2015 -0600
Committer: Kyle Nusbaum <kn...@yahoo-inc.com>
Committed: Fri Feb 27 12:51:04 2015 -0600

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


http://git-wip-us.apache.org/repos/asf/storm/blob/b7bfdde8/dev-tools/test-ns.py
----------------------------------------------------------------------
diff --git a/dev-tools/test-ns.py b/dev-tools/test-ns.py
new file mode 100755
index 0000000..206fd6c
--- /dev/null
+++ b/dev-tools/test-ns.py
@@ -0,0 +1,17 @@
+#!/usr/bin/env python
+
+from subprocess import Popen, PIPE
+import sys
+import os
+
+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("\n")
+pipe.stdin.close()
+pipe.wait()
+
+os.chdir("..")


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

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

STORM-696: Single Namespace Test Launching


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

Branch: refs/heads/master
Commit: a4e94eae06080b376f10e9787865d24be74eba2f
Parents: a05ba34 b7bfdde
Author: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Authored: Wed Mar 11 18:18:23 2015 -0500
Committer: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Committed: Wed Mar 11 18:18:23 2015 -0500

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



[3/3] storm git commit: Added STORM-696 to Changelog

Posted by bo...@apache.org.
Added STORM-696 to Changelog


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

Branch: refs/heads/master
Commit: ec13a14f36aa824d071b302134d1f3f3807fc7e5
Parents: a4e94ea
Author: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Authored: Wed Mar 11 18:21:31 2015 -0500
Committer: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Committed: Wed Mar 11 18:21:31 2015 -0500

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


http://git-wip-us.apache.org/repos/asf/storm/blob/ec13a14f/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f63d251..a490da7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -75,6 +75,7 @@
  * STORM-690: Return Jedis into JedisPool with marking 'broken' if connection is broken
  * STORM-669: Replace links with ones to latest api document
  * STORM-670: restore java 1.6 compatibility (storm-kafka)
+ * STORM-696: Single Namespace Test Launching
 
 ## 0.9.3-rc2
  * STORM-558: change "swap!" to "reset!" to fix assignment-versions in supervisor