[ http://216.121.112.228/browse/NH-2622?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Patrick Earl updated NH-2622:
-----------------------------
Description:
There is an ignored test case in DynamicProxyTests/ProxiedMembers. One required fix is to change
string typeName = param.ParameterType.Name;
to:
string typeName = param.ParameterType.FullName;
in:
DefaultMethodEmitter.cs
However, after doing this, the test still crashes the runtime, likely due to invalid IL being generated.
was:
There is an ignored test case in DynamicProxyTests/ProxiedMembers. One required fix is to change
string typeName = param.ParameterType.Name;
to:
string typeName = param.ParameterType.FullName;
However, after doing this, the test still crashes the runtime, likely due to invalid IL being generated.
> Proxying fails for methods with out and ref arguments
> -----------------------------------------------------
>
> Key: NH-2622
> URL: http://216.121.112.228/browse/NH-2622
> Project: NHibernate
> Issue Type: Bug
> Components: ByteCode providers
> Affects Versions: 3.2.0
> Reporter: Patrick Earl
> Priority: Critical
>
> There is an ignored test case in DynamicProxyTests/ProxiedMembers. One required fix is to change
> string typeName = param.ParameterType.Name;
> to:
> string typeName = param.ParameterType.FullName;
> in:
> DefaultMethodEmitter.cs
> However, after doing this, the test still crashes the runtime, likely due to invalid IL being generated.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://216.121.112.228/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|