diff --git a/test/import_tester b/test/import_tester new file mode 100755 index 0000000000000000000000000000000000000000..eebaba60135a9681186d726fd80b7ddd2b0a371a --- /dev/null +++ b/test/import_tester @@ -0,0 +1,3 @@ +#! /bin/bash +cd "$(dirname $0)/.." +find scapy -name '*.py' | sed -e 's#/#.#g' -e 's/\(\.__init__\)\?\.py$//' | while read a; do echo "######### $a"; python -c "import $a"; done