mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-22 01:59:12 +02:00
EditorMacroScript: Allow skipping self-test. --skip-tests=MacroScript
This commit is contained in:
parent
4e9d8b173f
commit
fc11d80277
@ -9,7 +9,7 @@ uses
|
|||||||
// LCL
|
// LCL
|
||||||
Dialogs,
|
Dialogs,
|
||||||
// IdeIntf
|
// IdeIntf
|
||||||
SrcEditorIntf, IDEOptionsIntf, IDEOptEditorIntf,
|
SrcEditorIntf, IDEOptionsIntf, IDEOptEditorIntf, IDEUtils,
|
||||||
// MacroScript
|
// MacroScript
|
||||||
EMScriptMacro, EMSSelfTest, EMSIdeOptions, EMSStrings;
|
EMScriptMacro, EMSSelfTest, EMSIdeOptions, EMSStrings;
|
||||||
|
|
||||||
@ -29,6 +29,9 @@ begin
|
|||||||
|
|
||||||
if not EMSSupported then {%H-}exit;
|
if not EMSSupported then {%H-}exit;
|
||||||
|
|
||||||
|
if GetSkipCheckByKey('MacroScript') or GetSkipCheckByKey('All') then
|
||||||
|
exit;
|
||||||
|
|
||||||
conf := GetEMSConf;
|
conf := GetEMSConf;
|
||||||
try
|
try
|
||||||
conf.Load;
|
conf.Load;
|
||||||
|
Loading…
Reference in New Issue
Block a user