aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ci/cover.awk
diff options
context:
space:
mode:
authorEmma Foley <emma.l.foley@intel.com>2017-11-07 21:04:08 +0000
committerEmma Foley <emma.l.foley@intel.com>2017-11-17 17:19:17 +0000
commitf01e1496ba4c520b011663b1ff634db7a668a383 (patch)
tree9e3f485544a83b76b0c84e41de2ff1b0c61f544b /tests/ci/cover.awk
parent29476ed0317dcc635dff67d2fc9fd68233aa6656 (diff)
Move test scripts to tools/
Move the scripts that tox uses for running tests to the tools/ directory: * run_tests.sh -> tools/run_tests.sh * tests/ci/cover.{sh,awk} -> tools/ JIRA: YARDSTICK-837 Change-Id: I817c9e5f58c06b45f1de3f369318f4bb24168677 Signed-off-by: Emma Foley <emma.l.foley@intel.com>
Diffstat (limited to 'tests/ci/cover.awk')
-rw-r--r--tests/ci/cover.awk25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/ci/cover.awk b/tests/ci/cover.awk
deleted file mode 100644
index e4bb816dc..000000000
--- a/tests/ci/cover.awk
+++ /dev/null
@@ -1,25 +0,0 @@
-BEGIN{
- template = "%6s %-75s\n"
- printf template, "Delta", "Module Path"
-}
-
-/^-/{
- s = substr($1, 2)
- x[s] = $3;
-};
-
-/^+/{
- s = substr($1, 2)
- d = $3
- if (s in x)
- d = d - x[s]
- y[s" "d] = d
-}
-
-END{
- asorti(y, z1, "@val_num_asc")
- for (i=1; i <= length(z1); i++){
- split(z1[i], z2, " ")
- printf template, z2[2], z2[1]
- }
-}