diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2016-06-23 18:34:14 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-01 16:22:47 +0100 |
commit | 5599645d3303d2c1b4090b4e6ae3d41cb7206ede (patch) | |
tree | f2629beb09acac1bfb2fbcdcb104d6089de8fb2e /meta/lib | |
parent | da3b9242fcb308e9d135a0371dcb210e087ce96c (diff) | |
download | poky-5599645d3303d2c1b4090b4e6ae3d41cb7206ede.tar.gz |
oeqa.buildperf: archive build/conf into test results
Have the build/conf directory as part of test results.
(From OE-Core rev: ea32a8a65f668450e0ec0e80483bd5e8c91b8a18)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/buildperf/base.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/lib/oeqa/buildperf/base.py b/meta/lib/oeqa/buildperf/base.py index 1bfcb71610..c0318a18e0 100644 --- a/meta/lib/oeqa/buildperf/base.py +++ b/meta/lib/oeqa/buildperf/base.py | |||
@@ -94,6 +94,7 @@ class BuildPerfTestRunner(object): | |||
94 | self.results['start_time'] = start_time | 94 | self.results['start_time'] = start_time |
95 | self.results['tests'] = {} | 95 | self.results['tests'] = {} |
96 | 96 | ||
97 | self.archive_build_conf() | ||
97 | for test_class in self.test_run_queue: | 98 | for test_class in self.test_run_queue: |
98 | log.info("Executing test %s: %s", test_class.name, | 99 | log.info("Executing test %s: %s", test_class.name, |
99 | test_class.description) | 100 | test_class.description) |
@@ -112,6 +113,13 @@ class BuildPerfTestRunner(object): | |||
112 | self.results['elapsed_time'] = datetime.utcnow() - start_time | 113 | self.results['elapsed_time'] = datetime.utcnow() - start_time |
113 | return 0 | 114 | return 0 |
114 | 115 | ||
116 | def archive_build_conf(self): | ||
117 | """Archive build/conf to test results""" | ||
118 | src_dir = os.path.join(os.environ['BUILDDIR'], 'conf') | ||
119 | tgt_dir = os.path.join(self.out_dir, 'build', 'conf') | ||
120 | os.makedirs(os.path.dirname(tgt_dir)) | ||
121 | shutil.copytree(src_dir, tgt_dir) | ||
122 | |||
115 | 123 | ||
116 | def perf_test_case(obj): | 124 | def perf_test_case(obj): |
117 | """Decorator for adding test classes""" | 125 | """Decorator for adding test classes""" |