mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2025-08-06 13:50:49 +08:00
Update help menu to use mnemonics
This commit is contained in:
14
src/unity.c
14
src/unity.c
@ -2332,13 +2332,13 @@ int UnityParseOptions(int argc, char** argv)
|
|||||||
/* fall-through to display help */
|
/* fall-through to display help */
|
||||||
case 'h':
|
case 'h':
|
||||||
UnityPrint("Options: "); UNITY_PRINT_EOL();
|
UnityPrint("Options: "); UNITY_PRINT_EOL();
|
||||||
UnityPrint("-l List all tests"); UNITY_PRINT_EOL();
|
UnityPrint("-l List all tests and exit"); UNITY_PRINT_EOL();
|
||||||
UnityPrint("-f TEST Only run tests with TEST in the name"); UNITY_PRINT_EOL();
|
UnityPrint("-f NAME Filter to run only tests whose name includes NAME"); UNITY_PRINT_EOL();
|
||||||
UnityPrint("-n TEST Only run tests with TEST in the name"); UNITY_PRINT_EOL();
|
UnityPrint("-n NAME (deprecated) alias of -f"); UNITY_PRINT_EOL();
|
||||||
UnityPrint("-h Show this help menu"); UNITY_PRINT_EOL();
|
UnityPrint("-h show this Help menu"); UNITY_PRINT_EOL();
|
||||||
UnityPrint("-q Quiet/Decrease verbosity"); UNITY_PRINT_EOL();
|
UnityPrint("-q Quiet/decrease verbosity"); UNITY_PRINT_EOL();
|
||||||
UnityPrint("-v Increase verbosity"); UNITY_PRINT_EOL();
|
UnityPrint("-v increase Verbosity"); UNITY_PRINT_EOL();
|
||||||
UnityPrint("-x TEST Exclude tests with TEST in the name"); UNITY_PRINT_EOL();
|
UnityPrint("-x NAME eXclude tests whose name includes NAME"); UNITY_PRINT_EOL();
|
||||||
UNITY_OUTPUT_FLUSH();
|
UNITY_OUTPUT_FLUSH();
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user