1#! /usr/bin/env python 2 3 4############################################################################# 5## ## 6## UTscapy.py --- Unit Tests with scapy ## 7## see http://www.secdev.org/projects/UTscapy/ ## 8## for more informations ## 9## ## 10## Copyright (C) 2005 Philippe Biondi <phil@secdev.org> ## 11## ## 12## This program is free software; you can redistribute it and/or modify it ## 13## under the terms of the GNU General Public License version 2 as ## 14## published by the Free Software Foundation. ## 15## ## 16## This program is distributed in the hope that it will be useful, but ## 17## WITHOUT ANY WARRANTY; without even the implied warranty of ## 18## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## 19## General Public License for more details. ## 20## ## 21############################################################################# 22 23 24import sys 25from scapy.tools.UTscapy import main 26 27exit(main(sys.argv[1:])) 28