[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1412031436-14492-1-git-send-email-vadim4j@gmail.com>
Date: Tue, 30 Sep 2014 01:57:16 +0300
From: Vadim Kochan <vadim4j@...il.com>
To: netdev@...r.kernel.org
Cc: Vadim Kochan <vadim4j@...il.com>
Subject: [PATCH iproute2] tests: Dont fail cls-testbed.t if tests/cls dir is empty
Curently tests/cls-testbed.t tries to run any *.t in
tests/cls/ folder but such folder does not exist.
The better solution can be like having a generic mechanism which
allows to SKIP some tests (by return code?).
Signed-off-by: Vadim Kochan <vadim4j@...il.com>
---
testsuite/tests/cls-testbed.t | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/testsuite/tests/cls-testbed.t b/testsuite/tests/cls-testbed.t
index efae2a5..be32d79 100755
--- a/testsuite/tests/cls-testbed.t
+++ b/testsuite/tests/cls-testbed.t
@@ -5,6 +5,11 @@ source lib/generic.sh
QDISCS="cbq htb dsmark"
+if [ ! -d tests/cls ]; then
+ ts_log "tests/cls folder is empty"
+ exit 0
+fi
+
for q in ${QDISCS}; do
ts_log "Preparing classifier testbed with qdisc $q"
--
2.1.0
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists