aboutsummaryrefslogtreecommitdiffstats
path: root/tests/opnfv/test_cases/opnfv_yardstick_tc046.yaml
AgeCommit message (Expand)AuthorFilesLines
2017-12-15bugfix: kill process do not accurately kill "nova-api"rexlee87761-2/+3
2017-11-20bugfix: tc023 miss description and tc050-58 wrong description @media only all and (prefers-color-scheme: dark) { .highlight .hll { background-color: #49483e } .highlight .c { color: #75715e } /* Comment */ .highlight .err { color: #960050; background-color: #1e0010 } /* Error */ .highlight .k { color: #66d9ef } /* Keyword */ .highlight .l { color: #ae81ff } /* Literal */ .highlight .n { color: #f8f8f2 } /* Name */ .highlight .o { color: #f92672 } /* Operator */ .highlight .p { color: #f8f8f2 } /* Punctuation */ .highlight .ch { color: #75715e } /* Comment.Hashbang */ .highlight .cm { color: #75715e } /* Comment.Multiline */ .highlight .cp { color: #75715e } /* Comment.Preproc */ .highlight .cpf { color: #75715e } /* Comment.PreprocFile */ .highlight .c1 { color: #75715e } /* Comment.Single */ .highlight .cs { color: #75715e } /* Comment.Special */ .highlight .gd { color: #f92672 } /* Generic.Deleted */ .highlight .ge { font-style: italic } /* Generic.Emph */ .highlight .gi { color: #a6e22e } /* Generic.Inserted */ .highlight .gs { font-weight: bold } /* Generic.Strong */ .highlight .gu { color: #75715e } /* Generic.Subheading */ .highlight .kc { color: #66d9ef } /* Keyword.Constant */ .highlight .kd { color: #66d9ef } /* Keyword.Declaration */ .highlight .kn { color: #f92672 } /* Keyword.Namespace */ .highlight .kp { color: #66d9ef } /* Keyword.Pseudo */ .highlight .kr { color: #66d9ef } /* Keyword.Reserved */ .highlight .kt { color: #66d9ef } /* Keyword.Type */ .highlight .ld { color: #e6db74 } /* Literal.Date */ .highlight .m { color: #ae81ff } /* Literal.Number */ .highlight .s { color: #e6db74 } /* Literal.String */ .highlight .na { color: #a6e22e } /* Name.Attribute */ .highlight .nb { color: #f8f8f2 } /* Name.Builtin */ .highlight .nc { c
2017-06-30unify pod keywork so api can easily usedrexlee87761-1/+1
2017-05-18increase monitor number in cases.HuanLi1-0/+2
2017-03-25Bugfix:HA test cases rely on dynamic ip addresses in fuel podsJingLu51-1/+3
2017-02-17Update missing license headersDeepak S1-0/+8
2017-02-13Update CLI Command in yardstick TC019, TC045~TC048tjuyinkanglin1-1/+1
2017-01-20Create API to get a list of all test caseschenjiankun1-1/+2
2016-08-12Increase recovery SLA of HA test cases and fix tc019tjuyinkanglin1-2/+2
2016-07-28modify ha testing pod relative_pathrexlee87761-1/+1
2016-07-07Add test case description and task file for TC046tjuyinkanglin1-0/+42
/span> # Copyright (c) 2015 Ericsson AB and others. # stefan.k.berg@ericsson.com # jonas.bjurel@ericsson.com # 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 ############################################################################## ############################################################################# # Cache operations - only used when building through ci/build.sh # # This is the global cache implementation, providing the main target "cache" # which is called from ci/build.sh, and recursively calling the cache # operations clean-cache, get-cache and put-cache on all $(SUBDIRS). ############################################################################# export CACHETOOL := $(BUILD_BASE)/cache.sh # Call sub caches SUBGETCACHE = $(addsuffix .getcache,$(SUBDIRS)) $(SUBGETCACHE): %.getcache: $(MAKE) -C $* -f Makefile get-cache SUBPUTCACHE = $(addsuffix .putcache,$(SUBDIRS)) $(SUBPUTCACHE): %.putcache: $(MAKE) -C $* -f Makefile put-cache SUBCLEANCACHE = $(addsuffix .cleancache,$(SUBDIRS)) $(SUBCLEANCACHE): %.cleancache: $(MAKE) -C $* -f Makefile clean-cache # Overlay implementation: # - clean # - clean cache identities # - get caches # - build iso # - store caches .PHONY: cached-all cached-all: clean clean-cache $(SUBCLEANCACHE) get-cache $(SUBGETCACHE) iso put-cache $(SUBPUTCACHE) @echo "Cached build is complete" # cache: The target for ci/build.sh .PHONY: cache cache: @if [ -z "${CACHEBASE}" ]; then \ echo "CACHEBASE not set, are you really building through build.sh?"; \ exit 1; \ fi @docker version >/dev/null 2>&1 || (echo 'No Docker installation available'; exit 1) @make -C docker docker/runcontext $(DOCKERIMG) $(MAKE) $(MAKEFLAGS) cached-all