From 11fbef28b85516b48ff66a6b5419d94b3e3805ef Mon Sep 17 00:00:00 2001 From: Kazunari Sekigawa Date: Wed, 2 Jun 2021 06:21:42 +0900 Subject: [PATCH] Updated the wrapper scripts to run "ut_runner" for QA tests. --- macbuild/macQAT.py | 4 ++-- macbuild/macQAT.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/macbuild/macQAT.py b/macbuild/macQAT.py index 73e45b956..639bd8fb2 100755 --- a/macbuild/macQAT.py +++ b/macbuild/macQAT.py @@ -186,11 +186,11 @@ def ExportEnvVariables(): MyEnviron[ 'TESTSRC' ] = ".." MyEnviron[ 'TESTTMP' ] = WorkDir if System == "Darwin": - MyEnviron[ 'DYLD_LIBRARY_PATH' ] = "%s:%s/db_plugins" % (ProjectDir, ProjectDir) + MyEnviron[ 'DYLD_LIBRARY_PATH' ] = "%s:%s/db_plugins:%s/lay_plugins" % (ProjectDir, ProjectDir, ProjectDir) for env in [ 'TESTSRC', 'TESTTMP', 'DYLD_LIBRARY_PATH' ]: os.environ[env] = MyEnviron[env] else: - MyEnviron[ 'LD_LIBRARY_PATH' ] = "%s:%s/db_plugins" % (ProjectDir, ProjectDir) + MyEnviron[ 'LD_LIBRARY_PATH' ] = "%s:%s/db_plugins:%s/lay_plugins" % (ProjectDir, ProjectDir, ProjectDir) for env in [ 'TESTSRC', 'TESTTMP', 'LD_LIBRARY_PATH' ]: os.environ[env] = MyEnviron[env] diff --git a/macbuild/macQAT.sh b/macbuild/macQAT.sh index 8668cf91d..f5e462220 100755 --- a/macbuild/macQAT.sh +++ b/macbuild/macQAT.sh @@ -46,7 +46,7 @@ logfile=QATest_${gitSHA1}_${timestamp}__${presentDir}.log #---------------------------------------------------------------- export TESTSRC=.. export TESTTMP=QATest_${gitSHA1}_${timestamp}__${presentDir} -export DYLD_LIBRARY_PATH=$(pwd):$(pwd)/db_plugins +export DYLD_LIBRARY_PATH=$(pwd):$(pwd)/db_plugins:$(pwd)/lay_plugins #---------------------------------------------------------------- # Environment variables for "ut_runner"