-
-
Notifications
You must be signed in to change notification settings - Fork 15k
Some run-make-fulldeps don't fail if -include fails #83773
Copy link
Copy link
Closed
Labels
A-testsuiteArea: The testsuite used to check the correctness of rustcArea: The testsuite used to check the correctness of rustcC-bugCategory: This is a bug.Category: This is a bug.T-compilerRelevant to the compiler team, which will review and decide on the PR/issue.Relevant to the compiler team, which will review and decide on the PR/issue.
Metadata
Metadata
Assignees
Labels
A-testsuiteArea: The testsuite used to check the correctness of rustcArea: The testsuite used to check the correctness of rustcC-bugCategory: This is a bug.Category: This is a bug.T-compilerRelevant to the compiler team, which will review and decide on the PR/issue.Relevant to the compiler team, which will review and decide on the PR/issue.
Type
Fields
Give feedbackNo fields configured for issues without a type.
I tried this code:
I expected to see this happen: The test fails, because the Makefile includes
../tools.mkwhich doesn't exist - it should include../../run-make-fulldeps/tools.mkinstead.Instead, this happened: The test passes.
I can change it to a hard error by changing
-includetoinclude, but it seems bad to have a test that passes even if the commands it's running don't exist 😟Meta
This is based off of a5029ac.