Compiletest sometimes passes environment variables when building the Command object. However in the case of emscripten, these values get passed to node instead of the program itself.
node can't propagate env vars to the javascript code, since javascript has no concept of an environment variable. It is possible to pass environment variables to the "emscripten runtime", but that must be done by manually adding some JS code in the header of the file.
For the moment the tests that rely on env vars are ignored and point to this issue.
Compiletest sometimes passes environment variables when building the
Commandobject. However in the case of emscripten, these values get passed tonodeinstead of the program itself.nodecan't propagate env vars to the javascript code, since javascript has no concept of an environment variable. It is possible to pass environment variables to the "emscripten runtime", but that must be done by manually adding some JS code in the header of the file.For the moment the tests that rely on env vars are ignored and point to this issue.