ironpython3 icon indicating copy to clipboard operation
ironpython3 copied to clipboard

Some test cases try to run ipy with -I and fail in release mode

Open slozier opened this issue 3 years ago • 3 comments
trafficstars

This is basically like trying to import a module when running from the bin/Release folder without having set IRONPYTHONPATH. Because our standard libary is not in the normal location it fails to import.

For example.

bin/Release/net46/ipy.exe -I -c "import runpy"

will always fail because the standard library is not found on the path.

In 3.6, some tests, in test_gzip and test_macpath for example, use the test.support.script_helper.assert_python_ok method which runs ipy in isolated mode by default. This is causing failures.

A workaround was added to https://github.com/IronLanguages/ironpython3/pull/1427 and should be reverted once this is resolved.


Edit for searchability: The -I command line options is used to isolate Python from the user's environment (implies -E and -s)

slozier avatar May 07 '22 02:05 slozier

I know that this was done on purpose, but why the full Lib is not copied or linked into bin/Release/*/?

BCSharp avatar May 23 '22 23:05 BCSharp

I know that this was done on purpose, but why the full Lib is not copied or linked into bin/Release/*/?

Not sure exactly what the reasoning was (if it was my call then I forgot all about it). We can certainly reconsider - I seem to recall a few cases of people having issues getting the release build to run because of this (e.g. https://github.com/IronLanguages/ironpython3/issues/821).

slozier avatar May 24 '22 00:05 slozier

I always assumed that it was to make the staging build simpler, but since my recent dive into the IronPython MSBuild scripts I don't think it makes much difference. Maybe worth trying and seeing what happens (beside having this issue go away).

BCSharp avatar May 24 '22 03:05 BCSharp