aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/robot/map.robot
AgeCommit message (Collapse)AuthorFilesLines
2016-09-06CSIT-353: MAP-T FIX: Add tx src mac to traffic scriptMatej Klotton1-3/+4
Change-Id: I011231c68dc470590323933dbdb3f33c3026559b Signed-off-by: Matej Klotton <mklotton@cisco.com>
2016-08-25CSIT-353: Add basic map-t testsMatej Klotton1-0/+93
Change-Id: I78075e445cdd61e0e3cf9353bddeaf6e6bc978fa Signed-off-by: Matej Klotton <mklotton@cisco.com>
2016-07-13CSIT-32: Add lightweight hairpinning testMatej Klotton1-0/+58
Change-Id: Ibb62cab0891dfd2bd347c85e89d41bf02f2f96ac Signed-off-by: Matej Klotton <mklotton@cisco.com>
2016-07-13CSIT-32: Add decapsulation testMatej Klotton1-0/+48
Change-Id: I7c1e3e6aa5c88acf85afdcd01de5817603abbcab Signed-off-by: Matej Klotton <mklotton@cisco.com>
2016-07-13CSIT-32: Add Softwire lw4o6 ICMP testMatej Klotton1-1/+46
Change-Id: Ie82707b41f63c31e2a04c8300a961bd9c2ea5ad0 Signed-off-by: Matej Klotton <mklotton@cisco.com>
2016-07-12CSIT-32: Add Lightweight 4over6 test.Matej Klotton1-0/+67
Add keywords for configure MAP domanins and rules. Add testcase for check encapsulation IPv4 in IPv6. Change-Id: I52f04a15d982ccba1d35ce9ade9d7f0ce8e7f286 Signed-off-by: Matej Klotton <mklotton@cisco.com>
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef _RTE_ACL_OSDEP_H_ #define _RTE_ACL_OSDEP_H_ /** * @file * * RTE ACL DPDK/OS dependent file. */ #include <stdint.h> #include <stddef.h> #include <inttypes.h> #include <limits.h> #include <ctype.h> #include <string.h> #include <errno.h> #include <stdio.h> #include <stdarg.h> #include <stdlib.h> #include <sys/queue.h> /* * Common defines. */ #define DIM(x) RTE_DIM(x) #include <rte_common.h> #include <rte_vect.h> #include <rte_memory.h> #include <rte_log.h> #include <rte_memcpy.h> #include <rte_prefetch.h> #include <rte_byteorder.h> #include <rte_branch_prediction.h> #include <rte_memzone.h> #include <rte_malloc.h> #include <rte_eal.h> #include <rte_eal_memconfig.h> #include <rte_per_lcore.h> #include <rte_errno.h> #include <rte_string_fns.h> #include <rte_cpuflags.h> #include <rte_log.h> #include <rte_debug.h> #endif /* _RTE_ACL_OSDEP_H_ */