Repository: incubator-hawq Updated Branches: refs/heads/master 8906240f4 -> 531b4d69f
HAWQ-977. mask and clean up some files after running feature_test cases. Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/531b4d69 Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/531b4d69 Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/531b4d69 Branch: refs/heads/master Commit: 531b4d69f4e055fb9a6df256adea6b73c96a76ad Parents: 8906240 Author: Paul Guo <[email protected]> Authored: Wed Aug 3 09:31:43 2016 +0800 Committer: Paul Guo <[email protected]> Committed: Wed Aug 3 09:32:33 2016 +0800 ---------------------------------------------------------------------- src/test/feature/.gitignore | 1 + src/test/feature/Makefile | 5 +++++ 2 files changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/531b4d69/src/test/feature/.gitignore ---------------------------------------------------------------------- diff --git a/src/test/feature/.gitignore b/src/test/feature/.gitignore index a2e6bd4..c7332b2 100644 --- a/src/test/feature/.gitignore +++ b/src/test/feature/.gitignore @@ -1 +1,2 @@ doc/ +**/*.out http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/531b4d69/src/test/feature/Makefile ---------------------------------------------------------------------- diff --git a/src/test/feature/Makefile b/src/test/feature/Makefile index f393a76..7202ac3 100644 --- a/src/test/feature/Makefile +++ b/src/test/feature/Makefile @@ -37,6 +37,11 @@ doc: doxygen doxygen_template clean distclean: sharelibclean + find . -type f -name "*.out" -exec $(RM) {} + + $(RM) ExternalSource/ans/external_oid.ans ExternalSource/ans/exttab1.ans ExternalSource/sql/external_oid.sql ExternalSource/sql/exttab1.sql + $(RM) UDF/ans/function_c.ans UDF/ans/function_creation.ans UDF/sql/function_c.sql UDF/sql/function_creation.sql + $(RM) testlib/ans/template.ans testlib/sql/template.sql + $(RM) utility/ans/copytest.csv utility/ans/onek.data $(RM) feature-test $(RM) feature-test.dSYM $(RM) doc
