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

"No expected directives found" error message is confusing if -verify=foo was passed #58290

Closed
tbaederr opened this issue Oct 11, 2022 · 15 comments · Fixed by #78338
Closed

"No expected directives found" error message is confusing if -verify=foo was passed #58290

tbaederr opened this issue Oct 11, 2022 · 15 comments · Fixed by #78338
Assignees
Labels
clang:driver 'clang' and 'clang++' user-facing binaries. Not 'clang-cl' good first issue https://github.com/llvm/llvm-project/contribute

Comments

@tbaederr
Copy link
Contributor

tbaederr commented Oct 11, 2022

If one passes -verify=foo, the error message when no foo-* directives are found is:

error: no expected directives found: consider use of 'expected-no-diagnostics'

however, what's meant here is not expected-no-diagnostics but of course foo-no-diagnostics. This is especially confusing if multiple compiler invocations with different -verify= values are present.

The error message should use the proper prefix.

@tbaederr tbaederr added good first issue https://github.com/llvm/llvm-project/contribute clang Clang issues not falling into any other category labels Oct 11, 2022
@llvmbot
Copy link
Member

llvmbot commented Oct 11, 2022

@llvm/issue-subscribers-good-first-issue

@EugeneZelenko EugeneZelenko added clang:driver 'clang' and 'clang++' user-facing binaries. Not 'clang-cl' and removed clang Clang issues not falling into any other category labels Oct 11, 2022
@llvmbot
Copy link
Member

llvmbot commented Oct 11, 2022

@llvm/issue-subscribers-clang-driver

@diohabara
Copy link

Hi! Let me resolve this issue!

@diohabara
Copy link

I'm still working on it!
I successfully reproduced the issue, and I'll fix it.

@diohabara
Copy link

@tbaederr
According to this commit( 0fea045 ), it seems that the behavior is expected. Should we fix it to err with foo-no-diagnostics?

@tbaederr
Copy link
Contributor Author

tbaederr commented Oct 25, 2022

It's fine that a "no-diagnostics" comment is required, but if I pass -verify=foo, I must use "foo-no-diagnostics" and as such, it would be nice if error messages about the usage of such "expected" messages would use the proper prefix and tell me that I should be adding a "foo-no-diagnostics" comment, not an "expected-no-diagnostics" one.

@diohabara
Copy link

It's fine that a "no-diagnostics" comment is required, but if I pass -verify=foo, I must use "foo-no-diagnostics" and as such, it would be nice if error messages about the usage of such "expected" messages would use the proper prefix and tell me that I should be adding a "foo-no-diagnostics" comment, not an "expected-no-diagnostics" one.

Thanks, I see! Since the commit I mentioned said that expected-no-diagnostics was expected behavior, I was wondering if I were in the right direction.

@tbaederr
Copy link
Contributor Author

I don't think "expected-no-diagnostics" is to be taken literally; it's just the default when no -verify= is passed.

@Unique-Usman
Copy link
Contributor

Hello, has this issue been fixed and @diohabara are you still working on this, I will like to work on it.

@diohabara
Copy link

@Unique-Usman

Yes, you can do it.

@Sh0g0-1758
Copy link
Member

Hello, I think that this issue has not been resolved yet. @tbaederr , I would like to work on this issue, can you please assign it to me.

@Sh0g0-1758
Copy link
Member

I reproduced the error by reading the following documentation : docs. Will rectify it now.

@Sh0g0-1758
Copy link
Member

Sh0g0-1758 commented Jan 10, 2024

I have made the necessary changes in the DiagnosticFrontendKinds.td file as :

def err_verify_no_directives : Error<
    "no expected directives found: consider use of '%0'-no-diagnostics">;

and in VerifyDiagnosticConsumer.cpp as :

if (SrcManager) {
// Produce an error if no expected-* directives could be found in the
// source file(s) processed.
if (Status == HasNoDirectives) {
  Diags.Report(diag::err_verify_no_directives).AddString(TO DO : ADD DIAGNOSTIC NAME).setForceEmit();
  ++NumErrors;
  Status = HasNoDirectivesReported;
}

can you please confirm whether or not I can get this by SM.getDiagnostics() ?

@tbaederr

@tbaederr
Copy link
Contributor Author

You might wanna look at b4e0589, which did something similar.

@Sh0g0-1758
Copy link
Member

Sh0g0-1758 commented Jan 16, 2024

@tbaederr, created a PR for the same. Please take a look at it and suggest changes when you get free. Also really sorry for the delay, was busy the past couple of days.

AaronBallman pushed a commit that referenced this issue Feb 7, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Updated the error message to use the proper prefix when
no expected directives are found by changing the hard coded expected in
the message to a dynamic value in two error messages.

Fixes #58290
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
clang:driver 'clang' and 'clang++' user-facing binaries. Not 'clang-cl' good first issue https://github.com/llvm/llvm-project/contribute
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants