From: "Mike Frysinger" <vapier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/portage-utils:master commit in: tests/quse/, tests/profile/, /, tests/source/, tests/qxpak/, tests/qtbz2/, ...
Date: Sat, 15 Mar 2014 06:02:23 +0000 (UTC) [thread overview]
Message-ID: <1394863067.853aa467aed80c3fd70d5dda4825f4a09969b5dd.vapier@gentoo> (raw)
commit: 853aa467aed80c3fd70d5dda4825f4a09969b5dd
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 15 05:57:47 2014 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Sat Mar 15 05:57:47 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage-utils.git;a=commit;h=853aa467
build: run tests in quiet mode by default
---
Makefile | 1 +
tests/Makefile | 2 +-
tests/atom_explode/Makefile | 2 +-
tests/install/Makefile | 2 +-
tests/mkdir/Makefile | 2 +-
tests/profile/Makefile | 2 +-
tests/qdepends/Makefile | 2 +-
tests/qfile/Makefile | 2 +-
tests/qlist/Makefile | 2 +-
tests/qmerge/Makefile | 2 +-
tests/qtbz2/Makefile | 2 +-
tests/quse/Makefile | 2 +-
tests/qxpak/Makefile | 2 +-
tests/reinitialize/Makefile | 2 +-
tests/source/Makefile | 2 +-
15 files changed, 15 insertions(+), 14 deletions(-)
diff --git a/Makefile b/Makefile
index 79a19eb..6c05dbd 100644
--- a/Makefile
+++ b/Makefile
@@ -35,6 +35,7 @@ Q = @
else
Q =
endif
+export Q
ifdef PV
CPPFLAGS += -DVERSION=\"$(PV)\"
else
diff --git a/tests/Makefile b/tests/Makefile
index bf568b0..8784fce 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -8,7 +8,7 @@ all: check
test check: $(TESTS:=_subdir)
%_subdir:
- cd $(@:_subdir=) || exit 1; \
+ $(Q)cd $(@:_subdir=) || exit 1; \
out=`$(MAKE) check 2>&1`; \
ret=$$?; \
echo "$$out"; \
diff --git a/tests/atom_explode/Makefile b/tests/atom_explode/Makefile
index b16f8ef..43d3bd7 100644
--- a/tests/atom_explode/Makefile
+++ b/tests/atom_explode/Makefile
@@ -14,7 +14,7 @@ basic: $(b)/e
diff -u $(s)/basic.good $(b)/basic
dotest: $(b)/e
- $(s)/dotest
+ $(Q)$(s)/dotest
clean:
rm -f $(b)/me $(b)/py $(b)/e $(b)/q $(b)/basic
diff --git a/tests/install/Makefile b/tests/install/Makefile
index b0839ba..0e8f6a8 100644
--- a/tests/install/Makefile
+++ b/tests/install/Makefile
@@ -4,7 +4,7 @@ include ../subdir.mk
all: check
test check:
- $(s)/dotest
+ $(Q)$(s)/dotest
clean:
rm -f $(b)/q `find $(b) -type l`
diff --git a/tests/mkdir/Makefile b/tests/mkdir/Makefile
index fb9a17d..ad14de3 100644
--- a/tests/mkdir/Makefile
+++ b/tests/mkdir/Makefile
@@ -10,7 +10,7 @@ $(b)/m: $(s)/test.c
test check: dotest
dotest: $(b)/m
- $(s)/dotest
+ $(Q)$(s)/dotest
clean:
rm -f $(b)/m
diff --git a/tests/profile/Makefile b/tests/profile/Makefile
index 13a25cb..f3eaa1f 100644
--- a/tests/profile/Makefile
+++ b/tests/profile/Makefile
@@ -4,6 +4,6 @@ include ../subdir.mk
all: check
test check:
- $(s)/dotest
+ $(Q)$(s)/dotest
.PHONY: all check clean test
diff --git a/tests/qdepends/Makefile b/tests/qdepends/Makefile
index d69ceff..48bc55b 100644
--- a/tests/qdepends/Makefile
+++ b/tests/qdepends/Makefile
@@ -4,7 +4,7 @@ include ../subdir.mk
all: check
test check:
- $(s)/dotest
+ $(Q)$(s)/dotest
clean:
diff --git a/tests/qfile/Makefile b/tests/qfile/Makefile
index ec2f4b6..a65f798 100644
--- a/tests/qfile/Makefile
+++ b/tests/qfile/Makefile
@@ -4,7 +4,7 @@ include ../subdir.mk
all: check
test check:
- $(s)/dotest
+ $(Q)$(s)/dotest
clean:
diff --git a/tests/qlist/Makefile b/tests/qlist/Makefile
index 9787827..80e1383 100644
--- a/tests/qlist/Makefile
+++ b/tests/qlist/Makefile
@@ -4,7 +4,7 @@ include ../subdir.mk
all: check
test check:
- $(s)/dotest
+ $(Q)$(s)/dotest
clean:
diff --git a/tests/qmerge/Makefile b/tests/qmerge/Makefile
index baff1b7..90f7b77 100644
--- a/tests/qmerge/Makefile
+++ b/tests/qmerge/Makefile
@@ -7,7 +7,7 @@ PACKAGES = $(PKGDIR)/Packages
all: test
test check: $(PACKAGES)
- ./dotest
+ $(Q)$(s)/dotest
$(PACKAGES): $(wildcard $(PKGDIR)/*/*.tbz2)
PKGDIR=$(PKGDIR) emaint binhost -f
diff --git a/tests/qtbz2/Makefile b/tests/qtbz2/Makefile
index 1abf6ae..7144e2b 100644
--- a/tests/qtbz2/Makefile
+++ b/tests/qtbz2/Makefile
@@ -4,7 +4,7 @@ include ../subdir.mk
all: check
test check:
- $(s)/dotest
+ $(Q)$(s)/dotest
clean:
diff --git a/tests/quse/Makefile b/tests/quse/Makefile
index 9b0117b..cc21e8b 100644
--- a/tests/quse/Makefile
+++ b/tests/quse/Makefile
@@ -4,7 +4,7 @@ include ../subdir.mk
all: check
test check:
- $(s)/dotest
+ $(Q)$(s)/dotest
clean:
rm -f $(b)/PORTDIR-* $(b)/*.squashfs
diff --git a/tests/qxpak/Makefile b/tests/qxpak/Makefile
index a6c6408..8abfa9d 100644
--- a/tests/qxpak/Makefile
+++ b/tests/qxpak/Makefile
@@ -4,7 +4,7 @@ include ../subdir.mk
all: check
test check:
- $(s)/dotest
+ $(Q)$(s)/dotest
clean:
diff --git a/tests/reinitialize/Makefile b/tests/reinitialize/Makefile
index 0de2802..11cfb65 100644
--- a/tests/reinitialize/Makefile
+++ b/tests/reinitialize/Makefile
@@ -4,7 +4,7 @@ include ../subdir.mk
all: check
test check:
- $(s)/dotest
+ $(Q)$(s)/dotest
clean:
diff --git a/tests/source/Makefile b/tests/source/Makefile
index ca88951..e10bcdf 100644
--- a/tests/source/Makefile
+++ b/tests/source/Makefile
@@ -4,7 +4,7 @@ include ../subdir.mk
all: check
test check:
- $(s)/dotest
+ $(Q)$(s)/dotest
clean:
reply other threads:[~2014-03-15 6:02 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1394863067.853aa467aed80c3fd70d5dda4825f4a09969b5dd.vapier@gentoo \
--to=vapier@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox