summaryrefslogtreecommitdiffstats
path: root/dovetail/test_runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'dovetail/test_runner.py')
-rw-r--r--dovetail/test_runner.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/dovetail/test_runner.py b/dovetail/test_runner.py
index ea58768c..a67a6314 100644
--- a/dovetail/test_runner.py
+++ b/dovetail/test_runner.py
@@ -45,6 +45,11 @@ class DockerRunner(object):
self.logger.debug('container id:%s', container_id)
+ dest_path = self.testcase.pre_copy_dest_path()
+ if dest_path:
+ src_path = self.testcase.mk_src_file()
+ ret, msg = Container.pre_copy(container_id, src_path, dest_path)
+
if not self.testcase.prepared():
prepare_failed = False
cmds = self.testcase.pre_condition()