Repository: bigtop Updated Branches: refs/heads/master 5d63481d5 -> 29862f45d
BIGTOP-2227. smoke-tests should be a part of the top-level project, not separated Missed the environment propagation piece ;( Never should be working past-midnight. Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/29862f45 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/29862f45 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/29862f45 Branch: refs/heads/master Commit: 29862f45d2754339f99d1138dc2285467750d1d2 Parents: 5d63481 Author: Konstantin Boudnik <[email protected]> Authored: Tue Jan 12 16:55:54 2016 -0800 Committer: Konstantin Boudnik <[email protected]> Committed: Tue Jan 12 16:55:54 2016 -0800 ---------------------------------------------------------------------- bigtop-tests/smoke-tests/build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/29862f45/bigtop-tests/smoke-tests/build.gradle ---------------------------------------------------------------------- diff --git a/bigtop-tests/smoke-tests/build.gradle b/bigtop-tests/smoke-tests/build.gradle index 6842c51..c3bd973 100644 --- a/bigtop-tests/smoke-tests/build.gradle +++ b/bigtop-tests/smoke-tests/build.gradle @@ -72,6 +72,12 @@ subprojects { return !keep_this_test; } + test { + // TestHadoopExamples and other tests rely on BIGTOP_HOME environment + // variable to find some resources. Let's set it up, using ext.BIGTOP_HOME + environment ("BIGTOP_HOME", BIGTOP_HOME) + } + test << { println("Now testing..."); //todo, add back in 'basic' after BIGTOP-1392 .
