From a39051f5b350bb870c3650c00c1460514a41934a Mon Sep 17 00:00:00 2001 From: Santiago Gimeno Date: Fri, 1 Apr 2016 10:22:41 +0200 Subject: [PATCH] test: make arch available in status files MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The value is retrieved from `process.arch` in node itself. PR-URL: https://github.com/nodejs/node/pull/5997 Reviewed-By: João Reis Reviewed-By: James M Snell Reviewed-By: Johan Bergström --- tools/test.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tools/test.py b/tools/test.py index d5caff9..9189ff3 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 -- 2.7.4