Skip to content
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

Closed
lgbaldoni opened this issue Mar 24, 2017 · 5 comments · Fixed by #1749
Closed

CodegenIdentityTest.DigestofObject failure on 32bit archs #1747

lgbaldoni opened this issue Mar 24, 2017 · 5 comments · Fixed by #1749
Assignees

Comments

@lgbaldoni
Copy link
Contributor

i586 and armv7l on 0.11.4.

[ RUN      ] CodegenIdentityTest.DigestofObject
test/libponyc/codegen_identity.cc:184: Failure
Value of: 1
Expected: exit_code
Which is: 0
[  FAILED  ] CodegenIdentityTest.DigestofObject (23 ms)

Is there a way to test this interactively?

@Praetonus
Copy link
Member

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.

@lgbaldoni
Copy link
Contributor Author

[ RUN      ] CodegenIdentityTest.DigestofObject
2708146176
18446744072122730496
test/libponyc/codegen_identity.cc:189: Failure
Value of: 1
Expected: exit_code
Which is: 0
[  FAILED  ] CodegenIdentityTest.DigestofObject (1109 ms)

@Praetonus
Copy link
Member

So in hexadecimal, that's A16B0800 and FFFFFFFFA16B0800.

This comes from the cast to intptr_t in ptr_to_int. Since it's a cast to a signed integer type, it does sign extension. The fix is to use uintptr_t. I'll open a PR.

Thanks for reporting.

@Praetonus Praetonus self-assigned this Mar 24, 2017
Praetonus pushed a commit to Praetonus/ponyc that referenced this issue Mar 24, 2017
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.
@lgbaldoni
Copy link
Contributor Author

Works for me.

@Praetonus
Copy link
Member

Good. I'll merge the PR then.

Praetonus pushed a commit that referenced this issue Mar 24, 2017
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants