summaryrefslogtreecommitdiffstats
path: root/dpdk/Makefile
AgeCommit message (Expand)AuthorFilesLines
2016-11-23dpdk: switch to 16.11Damjan Marion1-1/+1
2016-11-14dpdk: add build support for DPDK 16.11 releaseDamjan Marion1-1/+1
2016-11-09dpdk: bump to 16.11-rc3 releaseDamjan Marion1-1/+1
2016-10-26dpdk: enable building with dpdk 16.11-rc1Damjan Marion1-0/+1
2016-08-03VPP-180 Clean up multi-socket / multi-chunk mempool discoveryDave Barach1-2/+1
2016-08-02VPP: Fixed dpdk-16.07 BAD checksum errorSachin1-1/+1
2016-07-22Add DPDK 16.07 support (rc3 based)Damjan Marion1-1/+1
2016-07-02Enable PCI extended tags in the DPDK configDamjan Marion1-1/+3
2016-06-05dpdk: download from dpdk.orgThomas Monjalon1-6/+6
2016-05-19Add support for multiple microarchitectures in single binaryDamjan Marion1-1/+2
2016-05-17dpdk/Makefile - Allow dpdk target to be set according to the platformChristophe Fontaine1-1/+10
2016-05-07Switch to using nexus.fd.io for dpdk tarballEd Warnicke1-1/+1
2016-04-26Fix compile errors reported by clangDamjan Marion1-3/+10
2016-04-26Build vpp w/ dpdk-16.04 by defaultDave Barach1-1/+1
2016-04-26Gernerate dpdk config out of target specific filesDamjan Marion1-7/+2
2016-04-12Add support for DPDK 16.04 release, rebase some of 2.2.0 patchesDamjan Marion1-1/+1
2016-04-11Bump DPDK 16.04 to RC4Damjan Marion1-1/+1
2016-03-29Add DPDK 16.04-rc2 supportDamjan Marion1-1/+4
2016-03-29Add abbility to specify dpdk tarball download base urlDamjan Marion1-1/+2
2016-03-25Use rte_mempool private data for storing vlib_buffer_tDamjan Marion1-1/+1
2016-03-14dpdk: fix link errorJean-Mickael Guerin1-1/+1
2016-02-25Add support of Ethernet link bonding utilizing DPDK link bondingJohn Lo1-2/+2
2016-02-13Increase number of dpdk lcores to 256Damjan Marion1-0/+1
2016-02-02Change default dpdk version to 2.2Damjan Marion1-1/+1
2015-12-16Introduce support for DPDK 2.2Damjan Marion1-3/+4
2015-12-08Initial commit of vpp code.v1.0.0Ed Warnicke1-0/+174
ground-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
# Copyright (c) 2019 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Idea of this file is motivated by OpenDylight,
# especially its Integration/Test sub-project.

# This file requires active virtualenv with tox package installed,
# or python-tox system package installed.

# Usage:
# cd to CSIT root (other directories might use different tox.ini)
#   $ tox
# will execute all checks.
#  $ tox -e pylint
# will execute only checks defined in "pylint" tox environment.

[tox]
envlist = new_line_length, line_length, autogen, pylint, tc_naming
# The following is needed as tox requires setup.py by default.
skipsdist = true
# Just a shorthand to avoid long lines.
checker_dir = ./resources/libraries/bash/entry/check

# TODO: Tox prints various warnings. Figure them out and fix them.

[testenv:pylint]
deps =
    pylint==1.5.4
    -r ./requirements.txt
whitelist_externals = /bin/bash
setenv = PYTHONPATH = {toxinidir}
# Run pylint, but hide its return value until python warnings are cleared.
commands = bash -c "bash {[tox]checker_dir}/pylint.sh || true"

# TODO: See FIXME in https://gerrit.fd.io/r/16423

[testenv:line_length]
whitelist_externals = /bin/bash
# Fix all transgressions and remove the " || true" workaround.
commands = bash -c "bash {[tox]checker_dir}/line.sh || true"

[testenv:new_line_length]
whitelist_externals = /bin/bash
# Adding .svg, big .rst tables, .yaml and similar still requires long lines.
# As current implementation is too dumb to filter those out,
# the checker has to remain non-voting.
commands = bash -c "bash {[tox]checker_dir}/new_line.sh || true"

[testenv:autogen]
whitelist_externals = /bin/bash
setenv = PYTHONPATH = {toxinidir}
commands = bash {[tox]checker_dir}/autogen.sh

[testenv:tc_naming]
whitelist_externals = /bin/bash
# Fix all TC namings and remove the " || true" workaround.
commands = bash -c "bash {[tox]checker_dir}/tc_naming.sh || true"

# TODO: Migrate current docs check here.
# TODO: Create voting "pylint violations should not increase" checker.
# TODO: Create voting checker to reject suites with Force Tags of other suite.
# TODO: Create voting checker against tags not in tag_documentation.rst file.
# TODO: Create Robot suite Documentation checker (backslash if not next mark).
# TODO: Create .yaml specific checker, so people can override long line check.
# TODO: Create .rst specific checker, if there is one allowing
#       to override line check.
# TODO: You get the idea, replace line check with something smarter
#       wherever possible.