diff options
author | Santiago Gimeno <santiago.gimeno@gmail.com> | 2016-04-01 10:22:41 +0200 |
---|---|---|
committer | Myles Borins <mborins@us.ibm.com> | 2016-04-11 12:35:59 -0400 |
commit | a39051f5b350bb870c3650c00c1460514a41934a (patch) | |
tree | f6de71128ccb832719af0a9840a61cd3bcf646f2 /tools | |
parent | ccf90b651a9a042c714f5859032898a2a1997e99 (diff) | |
download | nodejs-a39051f5b350bb870c3650c00c1460514a41934a.tar.gz nodejs-a39051f5b350bb870c3650c00c1460514a41934a.tar.bz2 nodejs-a39051f5b350bb870c3650c00c1460514a41934a.zip |
test: make arch available in status files
The value is retrieved from `process.arch` in node itself.
PR-URL: https://github.com/nodejs/node/pull/5997
Reviewed-By: João Reis <reis@janeasystems.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/test.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/test.py b/tools/test.py index d5caff92e..9189ff36a 100755 --- a/tools/test.py +++ b/tools/test.py @@ -1514,10 +1514,15 @@ def Main(): if not exists(vm): print "Can't find shell executable: '%s'" % vm continue + archEngineContext = Execute([vm, "-p", "process.arch"], context) + vmArch = archEngineContext.stdout.rstrip() + if archEngineContext.exit_code is not 0 or vmArch == "undefined": + print "Can't determine the arch of: '%s'" % vm + continue env = { 'mode': mode, 'system': utils.GuessOS(), - 'arch': arch, + 'arch': vmArch, } test_list = root.ListTests([], path, context, arch, mode) unclassified_tests += test_list |