orchestrator: inner-tree path can be a list.

Shared trees are supported by specifying the inner-tree as a list in the
mcombo file.  This change enables that work.

Bug: None
Test: manual, unittests pass

Change-Id: I161d707d0aada66d134b49b158bf538f0e2a2572
This commit is contained in:
LaMont Jones
2022-06-23 19:09:06 +00:00
parent f6f6c2f8cf
commit c39e502774
7 changed files with 73 additions and 40 deletions

View File

@@ -28,7 +28,7 @@ class TestContext(Context):
"Context for testing. The real Context is manually constructed in orchestrator.py."
def __init__(self, test_work_dir, test_name):
super(MockContext, self).__init__(os.path.join(test_work_dir, test_name),
super(TestContext, self).__init__(os.path.join(test_work_dir, test_name),
Errors(None))