Repository: bigtop Updated Branches: refs/heads/master 8b0a6a109 -> 937a985e4
BIGTOP-2235. Allow smoke-tests to use filename regexps instead of explicite listings Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/f368f26f Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/f368f26f Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/f368f26f Branch: refs/heads/master Commit: f368f26f5edf190cef6920a10461fcfa3ba475a3 Parents: 8b0a6a1 Author: Konstantin Boudnik <[email protected]> Authored: Tue Jan 12 23:08:54 2016 -0800 Committer: Konstantin Boudnik <[email protected]> Committed: Thu Jan 14 13:08:16 2016 -0800 ---------------------------------------------------------------------- bigtop-tests/smoke-tests/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/f368f26f/bigtop-tests/smoke-tests/build.gradle ---------------------------------------------------------------------- diff --git a/bigtop-tests/smoke-tests/build.gradle b/bigtop-tests/smoke-tests/build.gradle index c3bd973..b9dd63f 100644 --- a/bigtop-tests/smoke-tests/build.gradle +++ b/bigtop-tests/smoke-tests/build.gradle @@ -64,7 +64,7 @@ subprojects { filename.contains(".java")) { keep_this_test = tests_to_include().find({ - it.contains(filename) + filename ==~ it }) != null; }
