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

Accuracy tests fail in CI on Ubuntu 20.04 #511

Closed
flba-eb opened this issue Jan 18, 2023 · 1 comment
Closed

Accuracy tests fail in CI on Ubuntu 20.04 #511

flba-eb opened this issue Jan 18, 2023 · 1 comment
Labels

Comments

@flba-eb
Copy link
Contributor

flba-eb commented Jan 18, 2023

Currently, CI builds fail on Ubuntu 20.04 because a function is not found.

Error message:

thread 'doit' panicked at 'failed to find tests/accuracy/main.rs:63', tests/accuracy/main.rs:106:25

Source code:

#[inline(never)]
#[rustfmt::skip]
fn inner(main_pos: Pos, outer_pos: Pos) {
    check!(main_pos, outer_pos);
    check!(main_pos, outer_pos);
    let inner_pos = pos!(); auxiliary::callback(|aux_pos| { //<--- this is found ✓
        check!(main_pos, outer_pos, inner_pos, aux_pos);
    });
    let inner_pos = pos!(); auxiliary::callback_inlined(|aux_pos| { // [line 63] <--- this is missing ✘
        check!(main_pos, outer_pos, inner_pos, aux_pos);
    });
}
@flba-eb flba-eb changed the title Accuracy tests fail in CI Ubuntu 20.04 Accuracy tests fail in CI on Ubuntu 20.04 Jan 18, 2023
@workingjubilee
Copy link
Contributor

CI is all-green now, so we can close this!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants