summaryrefslogtreecommitdiff
path: root/runtests.sh
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2016-03-12 10:25:58 +0100
committerIlya Etingof <etingof@gmail.com>2016-03-12 10:25:58 +0100
commit8cf8616278ea149a62a4bea3879103bea480de29 (patch)
tree5926ba5f6014abfdd815785279b640af9e45f5bf /runtests.sh
parent7d3e47739a53b3b81f3b11392462db0663aa8914 (diff)
downloadpysnmp-git-8cf8616278ea149a62a4bea3879103bea480de29.tar.gz
exclude network-specific scripts
Diffstat (limited to 'runtests.sh')
-rwxr-xr-xruntests.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/runtests.sh b/runtests.sh
index 3ccc1656..e6a55f00 100755
--- a/runtests.sh
+++ b/runtests.sh
@@ -13,5 +13,12 @@ for x in examples/hlapi/asyncore/sync/manager/cmdgen/*.py \
examples/smi/manager/*py \
examples/smi/agent/*.py
do
- python $x
+ case "$x" in
+ *spoof*)
+ continue
+ ;;
+ *)
+ python $x
+ ;;
+ esac
done \ No newline at end of file