-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Wasm][AOT] System.IO.DirectoryNotFoundException And System.IO.FileNotFoundException #49232
Comments
Tagging subscribers to 'arch-wasm': @lewing Issue DetailsIn effort to run library tests with AOT compilation and EnableAggressiveTrimming enabled on CI #48226 these errors are hit.
Repro:
|
@fanyang-mono all the test are failing with the above? It seems some of them are running through now. The System.IO.Compression tests run through to completion
|
|
@kjpou1 You are right. I am going through every each of them to see which ones are still failing. |
See #50229 for more information. This is what I am getting for System.Xml.Xsl.XslCompiledTransformApi.Tests with running the command From head.
|
System.ServiceModel.Syndication.TestsFrom head bcc7e0e
|
System.Xml.XmlSchemaSet.TestsAfter further analysis the failures here seem to be in the Resources again which does not get the Resource failure error but the resource strings are not being retrieved correctly. #50229
|
Closing this, as this predates the newer set of aot test issues that are tracked with |
In effort to run library tests with AOT compilation and EnableAggressiveTrimming enabled on CI #48226 these errors are hit.
System.IO.DirectoryNotFoundException : Could not find a part of the path
System.Xml.Xsl.XslCompiledTransformApi.Tests log - See also [WASM][AOT] src/mono/mono/mini/exceptions-wasm.c:66, condition `<disabled>' not met #50196 and [wasm][AOT] GetManifestResourceStream() failed in System.Private.XML #50229 this needs to be verified of which is the error before time is spent on fixing.
System.Xml.Xsl.XslTransformApi.Tests log - [wasm][AOT] GetManifestResourceStream() failed in System.Private.XML #50229
System.Xml.XmlSchema.XmlSchemaValidatorApi.Tests log - [wasm][AOT] GetManifestResourceStream() failed in System.Private.XML #50229
System.Data.DataSetExtensions.Testslog - [wasm][AOT] GetManifestResourceStream() failed in System.Private.XML #50229System.ServiceModel.Syndication.TestslogSystem.IO.Compression.TestslogSystem.Xml.XmlSchemaSet.Tests log -
Same as wasm AOT library test failure - invalid index into function table #46731- See below for failed test run not longer fails with original issue but may be contributed to [wasm][AOT] GetManifestResourceStream() failed in System.Private.XML #50229System.IO.Compression.ZipFile.TestslogSystem.Xml.XmlResolver.TestslogSystem.Xml.RW.XmlSystemPathResolver.TestslogSystem.IO.FileNotFoundException : Could not find file
System.Reflection.Metadata.Tests log - See Also [wasm][AOT] error : Precompiling failed #50158 (which is Closed by [Wasm][AOT] Can't find custom attr constructor image: InternalsVisibleToAttribute..ctor(string) linker#1913)
System.IO.Packaging.TestslogSystem.Reflection.MetadataLoadContext.Tests log - See also [wasm][aot] RuntimeError: function signature mismatch in System.Reflection.MetadataLoadContext #50171
System.Xml.XmlDocument.TestslogRepro:
Check out changes in
4f17c4e without this, many tests are not discovered.
4e7ab85 this one helps avoid some AOT compilation errors with this exception filter.There shouldn't be exception filter issues anymore../build.sh -os Browser -arch wasm -c Release
./dotnet.sh build /t:Test /p:TargetOS=Browser /p:TargetArchitecture=wasm /p:Configuration=Release /p:EnableAggressiveTrimming=true /p:RunAOTCompilation=true src/libraries/<path-to-test-proj>
The text was updated successfully, but these errors were encountered: