-
-
Notifications
You must be signed in to change notification settings - Fork 267
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
IR tests fail on Windows for target x86 #1265
Comments
AppVeyor doesn't have that issue, nor did I (last run probably a month ago or so). I'm pretty sure I've never seen the |
I was worried about this. In LLVM/clang, many tests explicitly specify a target triple on the cmdline. Perhaps we should do the same for (some of) our tests. For example for the For the ldc2 search path, I only build with ninja and did not test other build systems. In |
Allowing additional calling conventions is easy: can you try changing the FileCheck line to: |
In |
So disabling some checks for certain triples would be cool. I haven't digged into that though. |
I can make attributes.d pass by adding "{{.*}}", but for align.d it's pretty bad because the symbol is different (\001 prefix) and the "align 32" checked later does not exist. I'm testing 64-bit here, the header of the IR file looks like this:
but I'm using the release_38 branch of LLVM. The ldc branch contains my x86 patches, but I'm pretty confident it does not change x64 builds. |
On second look, this seems to be x86. It uses the default of ldc2 from the ninja build. I expected this to build 64-bit code. I'll change the title... |
... as they currently fail for 32-bit MSVC, see issue ldc-developers#1265, hence blocking the unittests execution.
A small fix/adaptation wrt. explicit calling convention/special name mangling is in the works. What's left is fixing #1356 for MSVC targets, which will then allow to re-enable the currently disabled |
... as they currently fail for 32-bit MSVC, see issue ldc-developers#1265, hence blocking the unittests execution.
Nice |
... as they currently fail for 32-bit MSVC, see issue ldc-developers#1265, hence blocking the unittests execution.
... as they currently fail for 32-bit MSVC, see issue ldc-developers#1265, hence blocking the unittests execution.
The IR tests always fail for me on Windows testing the
x64x86 build.With the generated VS projects, it seems the ldc2 executable is expected in the build-ldc2-x64/bin folder, but it is generated to the Debug/Release subfolder:
With the Ninja build, ldc2 is found, but the test fails with this snippet found in the LastTest.log file:
It seems the additional calling convention is unexpected.
Here's the output for align.d:
The other 3 tests are reported to pass.
The text was updated successfully, but these errors were encountered: