aboutsummaryrefslogtreecommitdiffstats
path: root/tests/opnfv/test_suites
AgeCommit message (Expand)AuthorFilesLines
2017-07-06Merge "Blacklist TC011 from suites with ODL"Jing Lu5-0/+10
2017-07-03Blacklist TC011 from suites with ODL.highlight .hll { background-color: #ffffcc } .highlight .c { color: #888888 } /* Comment */ .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ .highlight .k { color: #008800; font-weight: bold } /* Keyword */ .highlight .ch { color: #888888 } /* Comment.Hashbang */ .highlight .cm { color: #888888 } /* Comment.Multiline */ .highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */ .highlight .cpf { color: #888888 } /* Comment.PreprocFile */ .highlight .c1 { color: #888888 } /* Comment.Single */ .highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */ .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ .highlight .ge { font-style: italic } /* Generic.Emph */ .highlight .gr { color: #aa0000 } /* Generic.Error */ .highlight .gh { color: #333333 } /* Generic.Heading */ .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ .highlight .go { color: #888888 } /* Generic.Output */ .highlight .gp { color: #555555 } /* Generic.Prompt */ .highlight .gs { font-weight: bold } /* Generic.Strong */ .highlight .gu { color: #666666 } /* Generic.Subheading */ .highlight .gt { color: #aa0000 } /* Generic.Traceback */ .highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */ .highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */ .highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */ .highlight .kp { color: #008800 } /* Keyword.Pseudo */ .highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */ .highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */ .highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */ .highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */ .highlight .na { color: #336699 } /* Name.Attribute */ .highlight .nb { color: #003388 } /* Name.Builtin */ .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-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) 2015 Ericsson AB and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

SHELL = /bin/bash

IMAGE = opnfv/yardstick

DOCKER_TAG = brahmaputra.0

.PHONY: all
all: .docker

.docker:
	/usr/bin/docker build --rm=true --no-cache=true -t $(IMAGE):$(DOCKER_TAG) yardstick-ci
	/usr/bin/docker tag -f $(IMAGE):$(DOCKER_TAG) $(IMAGE):latest
	touch .docker


.PHONY:	clean
clean:
	@docker ps | grep $(IMAGE) | awk '{print $$1}' | xargs -r docker stop
	@docker ps -a | grep $(IMAGE) | awk '{print $$1}' | xargs -r docker rm
	@echo "Docker images to remove:"
	@docker images | head -1 && docker images | grep $(IMAGE) || true
	@image_tags=($$(docker images | grep $(IMAGE) | awk '{print $$2}')) ; \
	for tag in "$${image_tags[@]}"; do \
	   echo "Removing docker image $(IMAGE):$$tag..." ; \
	   docker rmi $(IMAGE):$$tag ; \
	done
	rm -f .docker
d=retro' />
Navya
2-0/+100
2017-02-06KVMFORNFV: Implementing test suites for kvmfornfv ovs+dpdk scenarios.KalyanReddy2-0/+100
2016-12-16Add smoke, components, features and performance test suite for YatdstickJingLu54-0/+144
2016-11-16Merge "Add os-odl_l2-fdio-ha scenario support"Kubi1-0/+30
2016-11-04bugfix: tc027 results in tc037 time outrexlee87761-10/+10
2016-11-01Add os-odl_l2-fdio-ha scenario supportchenjiankun1-0/+30
2016-10-14Merge "run ipv6 test case on more pods"liang gao1-1/+3
2016-10-11run ipv6 test case on more podsrexlee87761-1/+3
2016-10-11Provide yardstick-trusty-server.tar.gz for lxd scenarioJingLu52-4/+11
2016-10-08Add raw image support for lxd scenarioJingLu51-0/+5
2016-09-29ipv6 testcase to support fuelrexlee87761-2/+3
2016-09-20Merge "Added opnfv_os-odl_l2-fdio-noha_daily.yaml and opnfv_os-nosdn-fdio-noh...liang gao2-0/+60
2016-09-19Added opnfv_os-odl_l2-fdio-noha_daily.yaml and opnfv_os-nosdn-fdio-noha_daily...juraj.linkes2-0/+60
2016-09-14Modify comment in first line in all test suitechenjiankun24-24/+24
2016-08-30Change executed test cases for bgpvpn scenariosjose.lausuch2-62/+10
2016-08-19Merge "remove previous pod suite yamls to avoid confusion"liang gao20-446/+0
2016-08-19remove previous pod suite yamls to avoid confusionrexlee877620-446/+0
2016-08-17BugFix: fix storperf deployment location errorJingLu51-1/+1
2016-08-15add new scenario opnfv_os-odl_l2-moon-harexlee87761-0/+54
2016-08-15fix bug of tc075 \t format error in yamlrexlee87761-1/+2
2016-08-15Merge "Add testcase tc0075 and mofify testcsuite"liang gao18-0/+144
2016-08-15Add testcase tc0075 and mofify testcsuiterexlee877618-0/+144
2016-08-12Add some missing test suites for noha scenariosMichal Skalski5-0/+222
2016-08-12Merge "Add task file and test case description file for TC063_StorageCapacity"liang gao18-0/+144
2016-08-11Add HA Test Cases in Test Suitetjuyinkanglin1-0/+16
2016-08-10Merge "add ping6 to nosdn-nofeature-ha scenario"liang gao1-0/+7
2016-08-10Add task file and test case description file for TC063_StorageCapacityJingLu518-0/+144
2016-08-09add ping6 to nosdn-nofeature-ha scenariorexlee87761-0/+7
2016-08-03Add Storperf in CI [work in progress]JingLu51-0/+8
2016-07-30Bugfix: specify pod.yaml files used for TC055 as TC055 is running directly on...JingLu518-1/+109
2016-07-28Update test_suite files for TC055, TC072JingLu518-0/+70
2016-07-28Merge "Add HA Test Cases in Test Suite"liang gao1-0/+20
2016-07-28Bugfix: remove a redundant dash in opnfv_os-onos-nofeature-ha_daily.yamlJingLu51-1/+1
2016-07-27Add HA Test Cases in Test Suitetjuyinkanglin1-0/+20
2016-07-26Update test_suite files for TC069, TC070 and TC071JingLu517-1/+102
2016-07-26complement sceanrio for joid, apex, noharexlee87767-0/+154