about summary refs log tree commit diff
path: root/tests/ui/target_modifiers
AgeCommit message (Collapse)AuthorLines
2025-08-21-Zsanitize and -Zsanitizer-cfi-normalize-integers flags are now target ↵Andrew Zhogin-0/+148
modifiers with custom consistency check function
2025-07-29Verify llvm-needs-components are not empty and match the --target valueDaniel Paoliello-4/+4
2025-05-05Make -Zfixed-x18 into a target modifierAlice Ryhl-0/+37
2025-03-26Rollup merge of #138483 - azhogin:azhogin/target-modifiers-bool-fix, r=fee1-deadStuart Cook-2/+57
Target modifiers fix for bool flags without value Fixed support of boolean flags without values: `-Zbool-flag` is now consistent with `-Zbool-flag=true` in another crate. When flag is explicitly set to default value, target modifier will not be set in crate metainfo (`-Zflag=false` when `false` is a default value for the flag). Improved error notification when target modifier flag is absent in a crate ("-Zflag unset"). Example: ``` note: `-Zreg-struct-return=true` in this crate is incompatible with unset `-Zreg-struct-return` in dependency `default_reg_struct_return` ```
2025-03-25compiletest: Support matching on diagnostics without a spanVadim Petrochenkov-0/+2
2025-03-17Target modifiers fix for bool flags without valueAndrew Zhogin-2/+57
2025-02-28tests: Unignore target modifier tests on all platformsVadim Petrochenkov-104/+43
These tests can be `check-pass` and do not need dynamic libraries. Also remove other unnecessary stuff from them.
2025-02-02Target modifiers (special marked options) are recorded in metainfo and ↵Andrew Zhogin-0/+169
compared to be equal in different crates