aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/XiteQt.py
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2020-11-07 14:08:31 +1100
committerNeil <nyamatongwe@gmail.com>2020-11-07 14:08:31 +1100
commit50be9c6b7cd609600f103e108c80c473c986a427 (patch)
treee550c8c1d9c2f3753b19e42481acebbb9ce0caa6 /test/XiteQt.py
parent4c687a95b0afcfcb60bdb916ca460cc9cf9d18f5 (diff)
downloadscintilla-mirror-50be9c6b7cd609600f103e108c80c473c986a427.tar.gz
Try to load Lexilla for tests that need a lexer but skip the tests when Lexilla
not found. Unicode line ends only tested with Lexilla as they require a lexer that supports Unicode line ends.
Diffstat (limited to 'test/XiteQt.py')
-rw-r--r--test/XiteQt.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/XiteQt.py b/test/XiteQt.py
index d1ee5ea6b..b5900a308 100644
--- a/test/XiteQt.py
+++ b/test/XiteQt.py
@@ -18,6 +18,10 @@ scintillaScriptsDirectory = os.path.join(scintillaDirectory, "scripts")
sys.path.append(scintillaScriptsDirectory)
import Face
+scintillaIncludesLexers = False
+# Lexilla may optionally be tested it is built and can be loaded
+lexillaAvailable = False
+
class Form(QDialog):
def __init__(self, parent=None):