-
-
Notifications
You must be signed in to change notification settings - Fork 418
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
CodegenIdentityTest.DigestofObject failure on 32bit archs #1747
Comments
Could you change the test to this to see the values: TEST_F(CodegenIdentityTest, DigestofObject)
{
const char* src =
"actor Main\n"
" new create(env: Env) =>\n"
" let dg = digestof env\n"
" let addr = @ptr_to_int[ISize](env).u64()\n"
" if dg == addr then\n"
" @pony_exitcode[None](I32(1))\n"
" else\n"
" env.out.print(dg.string())\n"
" env.out.print(addr.string())\n"
" end";
set_builtin(NULL);
TEST_COMPILE(src);
int exit_code = 0;
ASSERT_TRUE(run_program(&exit_code));
ASSERT_EQ(exit_code, 1);
} We probably need a better way to report failures in tests executing Pony programs. I'll look into what's possible. |
|
So in hexadecimal, that's This comes from the cast to Thanks for reporting. |
The DigestofObject test was failing because of a problem in the `ptr_to_int` helper function. This function was casting a pointer to intptr_t, resulting in an incorrect sign extension. The function now casts to uintptr_t, with the correct behaviour of a zero extension. This doesn't fix any actual correctness issue in Pony programs. Closes ponylang#1747.
Works for me. |
Good. I'll merge the PR then. |
The DigestofObject test was failing because of a problem in the `ptr_to_int` helper function. This function was casting a pointer to intptr_t, resulting in an incorrect sign extension. The function now casts to uintptr_t, with the correct behaviour of a zero extension. This doesn't fix any actual correctness issue in Pony programs. Closes #1747.
i586 and armv7l on 0.11.4.
Is there a way to test this interactively?
The text was updated successfully, but these errors were encountered: