You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
C:\sources\rperl>perl -Ilib t/09_interpret_execute.t
You said to run 0 tests at t/09_interpret_execute.t line 120.
C:\sources\rperl>
tracing the code shows https://github.com/wbraswell/rperl/blob/master/lib/RPerl/Compiler.pm#L864 always returns $input_path unmodified (IE the file paths passed are relative and need no triming). If sub post_processor__absolute_path_delete returns $input_path unmodified, the path is deleted from candidates to run list ( AKA %{$test_file}) at https://github.com/wbraswell/rperl/blob/master/t/09_interpret_execute.t#L109 . Actually since every path in %{$test_file} seems to be relative on my Win32 machine, the %{$test_file} hash is emptied of all file paths. Therefore t/09_interpret_execute.t fails with "You said to run 0 tests at t/09_interpret_execute.t line 120."
There is no explanation in 0e4d32a why if the path isn't trimmed, it is deleted from the candidate list.
The text was updated successfully, but these errors were encountered:
Test fails with Win32 GCC perl
tracing the code shows https://github.com/wbraswell/rperl/blob/master/lib/RPerl/Compiler.pm#L864 always returns $input_path unmodified (IE the file paths passed are relative and need no triming). If sub post_processor__absolute_path_delete returns $input_path unmodified, the path is deleted from candidates to run list ( AKA %{$test_file}) at https://github.com/wbraswell/rperl/blob/master/t/09_interpret_execute.t#L109 . Actually since every path in %{$test_file} seems to be relative on my Win32 machine, the %{$test_file} hash is emptied of all file paths. Therefore t/09_interpret_execute.t fails with "You said to run 0 tests at t/09_interpret_execute.t line 120."
There is no explanation in 0e4d32a why if the path isn't trimmed, it is deleted from the candidate list.
The text was updated successfully, but these errors were encountered: