From afefddfa387dad83bbcb15812bd279cf3197f583 Mon Sep 17 00:00:00 2001 From: Yaroslav Brustinov Date: Tue, 8 Mar 2016 10:28:20 +0200 Subject: regression: add stateless support (WIP); Scapy builder: fix remove MACs from binary, do not build by default; --- .../regression/unit_tests/tests_exceptions.py | 37 ---------------------- 1 file changed, 37 deletions(-) delete mode 100755 scripts/automation/regression/unit_tests/tests_exceptions.py (limited to 'scripts/automation/regression/unit_tests/tests_exceptions.py') diff --git a/scripts/automation/regression/unit_tests/tests_exceptions.py b/scripts/automation/regression/unit_tests/tests_exceptions.py deleted file mode 100755 index 604efcc8..00000000 --- a/scripts/automation/regression/unit_tests/tests_exceptions.py +++ /dev/null @@ -1,37 +0,0 @@ -#!/router/bin/python - -class TRexInUseError(Exception): - def __init__(self, value): - self.value = value - def __str__(self): - return repr(self.value) - -class TRexRunFailedError(Exception): - def __init__(self, value): - self.value = value - def __str__(self): - return repr(self.value) - -class TRexIncompleteRunError(Exception): - def __init__(self, value): - self.value = value - def __str__(self): - return repr(self.value) - -class TRexLowCpuUtilError(Exception): - def __init__(self, value): - self.value = value - def __str__(self): - return repr(self.value) - -class AbnormalResultError(Exception): - def __init__(self, value): - self.value = value - def __str__(self): - return repr(self.value) - -class ClassificationMissmatchError(Exception): - def __init__(self, value): - self.value = value - def __str__(self): - return repr(self.value) -- cgit