branch: master
commit 1994f09133d8efc036e671ac568b1bb8de426c6a
Author: rocky <[email protected]>
Commit: rocky <[email protected]>
Move test helper into test
---
Makefile.am | 6 +++---
make-check-filter.rb => test/make-check-filter.rb | 0
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 6f99d6e..9866e0f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -34,14 +34,14 @@ test: check
#: Run all tests without bloated output
check-short:
- $(MAKE) check 2>&1 | $(RUBY) make-check-filter.rb
+ $(MAKE) check 2>&1 | $(RUBY) test/make-check-filter.rb
#: Run all tests without and show just the failure lines
check-terse:
- $(MAKE) check 2>&1 | $(RUBY) make-check-filter.rb | grep failure
+ $(MAKE) check 2>&1 | $(RUBY) tes/make-check-filter.rb | grep failure
#: Run "make install"
install-short:
- $(MAKE) install 2>&1 | $(RUBY) make-check-filter.rb
+ $(MAKE) install 2>&1 | $(RUBY) test/make-check-filter.rb
.PHONY: test check check-short rmChangeLog
diff --git a/make-check-filter.rb b/test/make-check-filter.rb
similarity index 100%
rename from make-check-filter.rb
rename to test/make-check-filter.rb