aboutsummaryrefslogtreecommitdiff
path: root/openembedded-lkft
diff options
context:
space:
mode:
authorYongqin Liu <yongqin.liu@linaro.org>2018-07-08 10:41:38 +0800
committerYongqin Liu <yongqin.liu@linaro.org>2018-07-08 10:41:38 +0800
commit68b5852899b68ca0cc853c507a2577d36e123bf0 (patch)
tree1878a193f694f53960137b0a9a80d5e023eedba4 /openembedded-lkft
parentc44a829c135400627139d0e7d8c7e31da0885196 (diff)
openembedded-lkft/submit_for_testing.py: enable to use symbol links
since we use links to support test plan for android lcr build Change-Id: I988cb32ed2f738281cf25e707d12f87a7f703779 Signed-off-by: Yongqin Liu <yongqin.liu@linaro.org>
Diffstat (limited to 'openembedded-lkft')
-rw-r--r--openembedded-lkft/submit_for_testing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openembedded-lkft/submit_for_testing.py b/openembedded-lkft/submit_for_testing.py
index d9b87032a8..a94405914f 100644
--- a/openembedded-lkft/submit_for_testing.py
+++ b/openembedded-lkft/submit_for_testing.py
@@ -225,7 +225,7 @@ def main():
THIS_DIR = os.path.abspath(args.testplan_path)
# prevent creating templates when variables are missing
- j2_env = Environment(loader=FileSystemLoader(THIS_DIR), undefined=StrictUndefined)
+ j2_env = Environment(loader=FileSystemLoader(THIS_DIR, followlinks=True), undefined=StrictUndefined)
context = deepcopy(os.environ)
context.update({"device_type": os.path.join(args.testplan_device_path, args.device_type)})
for test in args.test_plan: