mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Mac v2 signing - Bug 1064952 - Update Cpp unit test harness for the new v2 bundle structure on OSX. r=jmaher
This commit is contained in:
parent
d16e3504d5
commit
1e3e94d28b
@ -414,6 +414,14 @@ int main(int argc, char** argv)
|
||||
nsCOMPtr<nsIFile> manifest;
|
||||
scrv = NS_GetSpecialDirectory(NS_GRE_DIR,
|
||||
getter_AddRefs(manifest));
|
||||
#ifdef XP_MACOSX
|
||||
if (NS_SUCCEEDED(scrv)) {
|
||||
nsCOMPtr<nsIFile> parent;
|
||||
manifest->GetParent(getter_AddRefs(parent));
|
||||
parent->AppendNative(NS_LITERAL_CSTRING("MacOS"));
|
||||
manifest = parent.forget();
|
||||
}
|
||||
#endif
|
||||
if (NS_FAILED(scrv)) {
|
||||
fail("NS_XPCOM_CURRENT_PROCESS_DIR");
|
||||
return 1;
|
||||
|
@ -97,17 +97,23 @@ class CPPUnitTests(object):
|
||||
env = dict(os.environ)
|
||||
env = self.build_core_environment(env)
|
||||
pathvar = ""
|
||||
libpath = self.xre_path
|
||||
if mozinfo.os == "linux":
|
||||
pathvar = "LD_LIBRARY_PATH"
|
||||
elif mozinfo.os == "mac":
|
||||
applibpath = os.path.join(os.path.dirname(libpath), 'MacOS')
|
||||
if os.path.exists(applibpath):
|
||||
# Set the library load path to Contents/MacOS if we're run from
|
||||
# the app bundle.
|
||||
libpath = applibpath
|
||||
pathvar = "DYLD_LIBRARY_PATH"
|
||||
elif mozinfo.os == "win":
|
||||
pathvar = "PATH"
|
||||
if pathvar:
|
||||
if pathvar in env:
|
||||
env[pathvar] = "%s%s%s" % (self.xre_path, os.pathsep, env[pathvar])
|
||||
env[pathvar] = "%s%s%s" % (libpath, os.pathsep, env[pathvar])
|
||||
else:
|
||||
env[pathvar] = self.xre_path
|
||||
env[pathvar] = libpath
|
||||
|
||||
# Use llvm-symbolizer for ASan if available/required
|
||||
llvmsym = os.path.join(self.xre_path, "llvm-symbolizer")
|
||||
@ -209,6 +215,8 @@ def main():
|
||||
|
||||
progs = extract_unittests_from_args(args, options.manifest_file)
|
||||
options.xre_path = os.path.abspath(options.xre_path)
|
||||
if mozinfo.isMac:
|
||||
options.xre_path = os.path.join(os.path.dirname(options.xre_path), 'Resources')
|
||||
tester = CPPUnitTests()
|
||||
|
||||
try:
|
||||
|
Loading…
Reference in New Issue
Block a user