summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2010-07-28 17:42:18 +0100
committerWill Thompson <will.thompson@collabora.co.uk>2010-10-01 17:03:41 +0100
commit807bf0a949db4987701d015566a4eedf30a69e45 (patch)
treed9f00fcb98c3f0f3c414b3cc70c38bf290550a1f
parent50a69455f39fff28557d4e45a4e2f8ad3281bc05 (diff)
downloadtelepathy-gabble-807bf0a949db4987701d015566a4eedf30a69e45.tar.gz
Make it easy to skip unrelated batches of tests during development
Use: make check ... TWISTED_TUBE_TESTS= TWISTED_FT_TESTS= ... Signed-off-by: Will Thompson <will.thompson@collabora.co.uk>
-rw-r--r--tests/twisted/Makefile.am21
1 files changed, 20 insertions, 1 deletions
diff --git a/tests/twisted/Makefile.am b/tests/twisted/Makefile.am
index 44409a029..94021d0d8 100644
--- a/tests/twisted/Makefile.am
+++ b/tests/twisted/Makefile.am
@@ -84,6 +84,9 @@ TWISTED_TESTS = \
text/test-text-no-body.py \
text/test-text.py \
tls/server-tls-channel.py \
+ $(NULL)
+
+TWISTED_TUBE_TESTS = \
tubes/accept-muc-dbus-tube.py \
tubes/accept-muc-stream-tube.py \
tubes/accept-private-dbus-tube.py \
@@ -102,6 +105,9 @@ TWISTED_TESTS = \
tubes/request-invalid-dbus-tube.py \
tubes/test-get-available-tubes.py \
tubes/test-socks5-muc.py \
+ $(NULL)
+
+TWISTED_VCARD_TESTS = \
vcard/get-contact-info.py \
vcard/item-not-found.py \
vcard/overlapping-sets.py \
@@ -124,6 +130,9 @@ TWISTED_TESTS = \
vcard/test-vcard-race.py \
vcard/update-get-failed.py \
vcard/update-rejected.py \
+ $(NULL)
+
+TWISTED_JINGLE_TESTS = \
jingle/accept-extra-stream.py \
jingle/call-basics.py \
jingle/call-codecoffer.py \
@@ -156,6 +165,9 @@ TWISTED_TESTS = \
jingle/test-content-complex.py \
jingle/test-wait-for-caps.py \
jingle/test-wait-for-caps-incomplete.py \
+ $(NULL)
+
+TWISTED_FT_TESTS = \
jingle-share/test-caps-file-transfer.py \
jingle-share/test-send-file.py \
jingle-share/test-send-file-send-before-accept.py \
@@ -181,6 +193,9 @@ TWISTED_TESTS = \
file-transfer/test-send-file-to-unknown-contact.py \
file-transfer/test-send-file-wait-to-provide.py \
file-transfer/test-send-file-send-before-accept.py \
+ $(NULL)
+
+TWISTED_TESTS += \
test-debug.py \
connect/disco-error-from-bare-jid.py \
connect/disco-no-reply.py \
@@ -197,7 +212,11 @@ TWISTED_TESTS = \
pubsub.py \
sidecar-own-caps.py \
sidecars.py \
- mail-notification.py
+ mail-notification.py \
+ $(NULL)
+
+TWISTED_TESTS += $(TWISTED_FT_TESTS) $(TWISTED_TUBE_TESTS)
+TWISTED_TESTS += $(TWISTED_JINGLE_TESTS) $(TWISTED_VCARD_TESTS)
TESTS =