JeremyYao commented on PR #1414: URL: https://github.com/apache/daffodil-vscode/pull/1414#issuecomment-3308611564
Retested this on Ubuntu 24.04. I have the following TDML file ```XML <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ns1:testSuite xmlns:ns1="http://www.ibm.com/xmlns/dfdl/testData" suiteName="Default Test Case" defaultRoundTrip="onePass"> <ns1:parserTestCase name="Default Test Case" root="file" model="jpeg.dfdl.xsd" roundTrip="onePass" description="Generated by DFDL VSCode Extension"> <ns1:document> <ns1:documentPart type="file">super_small.jpg</ns1:documentPart> </ns1:document> <ns1:infoset> <ns1:dfdlInfoset type="file">target/infoset.xml</ns1:dfdlInfoset> </ns1:infoset> </ns1:parserTestCase> </ns1:testSuite> ``` If I run the following launch.json config ```JSON { "version": "0.2.0", "configurations": [ { "request": "launch", "type": "dfdl", "name": "Wizard Config", "schema": { "path": "${command:AskForSchemaName}", "rootName": null, "rootNamespace": null }, "data": "${command:AskForDataName}", "debugServer": 4711, "infosetFormat": "xml", "infosetOutput": { "type": "file", "path": "${workspaceFolder}/target/infoset.xml" }, "tdmlConfig": { "action": "execute", "name": "Default Test Case" }, "trace": true, "stopOnEntry": true, "useExistingServer": false, "openDataEditor": true, "openInfosetView": false, "openInfosetDiffView": false, "daffodilDebugClasspath": [], "dataEditor": { "port": 9000, "logging": { "file": "${workspaceFolder}/dataEditor-${omegaEditPort}.log", "level": "info" } }, "dfdlDebugger": { "logging": { "file": "${workspaceFolder}/daffodil-debugger.log", "level": "INFO" } } } ] } ``` I see the following <img width="1870" height="908" alt="image" src="https://github.com/user-attachments/assets/66a6abc9-98ef-4de3-b972-09a9ec42b43e" /> The error messages are displayed <img width="455" height="100" alt="image" src="https://github.com/user-attachments/assets/0916f7f9-f6d3-4a5e-9447-2f41aeedadf4" /> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
