Branch
Hash :
636b8b97
Author :
Date :
2025-03-19T14:11:52
test: Add merge mode tests for all the sections The merge modes tests C file is now only generated locally, because it is too large. The generator Python script requires Jinja2, so the test is optional and depends on Jinja22 availability. The test aim to be exhaustive with various combinations of a base and an update: - plain base + plain update, for every mode - plain base + include (for every mode) update (every mode) - single include (base +| update)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
// WARNING: This file was auto-generated by: scripts/update-merge-modes-tests.py
xkb_compat "base-default" {
virtual_modifiers NumLock;
interpret.repeat= False;
setMods.clearLocks= True;
latchMods.clearLocks= True;
latchMods.latchToLock= True;
interpret Any + Any {
action= SetMods(modifiers=modMapMods);
};
interpret Caps_Lock {
action = LockMods(modifiers = Lock);
};
indicator "Caps Lock" {
!allowExplicit;
whichModState= Locked;
modifiers= Lock;
};
indicator "Num Lock" {
!allowExplicit;
whichModState= Locked;
modifiers= NumLock;
};
};
xkb_compat "base-augment" {
augment virtual_modifiers NumLock;
interpret.repeat= False;
setMods.clearLocks= True;
latchMods.clearLocks= True;
latchMods.latchToLock= True;
augment interpret Any + Any {
action= SetMods(modifiers=modMapMods);
};
augment interpret Caps_Lock {
action = LockMods(modifiers = Lock);
};
augment indicator "Caps Lock" {
!allowExplicit;
whichModState= Locked;
modifiers= Lock;
};
augment indicator "Num Lock" {
!allowExplicit;
whichModState= Locked;
modifiers= NumLock;
};
};
xkb_compat "base-override" {
override virtual_modifiers NumLock;
interpret.repeat= False;
setMods.clearLocks= True;
latchMods.clearLocks= True;
latchMods.latchToLock= True;
override interpret Any + Any {
action= SetMods(modifiers=modMapMods);
};
override interpret Caps_Lock {
action = LockMods(modifiers = Lock);
};
override indicator "Caps Lock" {
!allowExplicit;
whichModState= Locked;
modifiers= Lock;
};
override indicator "Num Lock" {
!allowExplicit;
whichModState= Locked;
modifiers= NumLock;
};
};
xkb_compat "base-replace" {
replace virtual_modifiers NumLock;
interpret.repeat= False;
setMods.clearLocks= True;
latchMods.clearLocks= True;
latchMods.latchToLock= True;
replace interpret Any + Any {
action= SetMods(modifiers=modMapMods);
};
replace interpret Caps_Lock {
action = LockMods(modifiers = Lock);
};
replace indicator "Caps Lock" {
!allowExplicit;
whichModState= Locked;
modifiers= Lock;
};
replace indicator "Num Lock" {
!allowExplicit;
whichModState= Locked;
modifiers= NumLock;
};
};
xkb_compat "update-default" {
virtual_modifiers NumLock;
interpret.repeat= False;
setMods.clearLocks= False; // Changed
// Unchanged
interpret Any + Any {
action= SetMods(modifiers=modMapMods);
};
// Changed
interpret Caps_Lock {
action = LockMods(modifiers = NumLock);
};
// Unchanged
indicator "Caps Lock" {
!allowExplicit;
whichModState= Locked;
modifiers= Lock;
};
// Changed
indicator "Num Lock" {
!allowExplicit;
whichModState= Base;
modifiers= Lock;
};
// New
indicator "Kana" {
!allowExplicit;
whichModState= Locked;
modifiers= Control;
};
};
xkb_compat "update-augment" {
augment virtual_modifiers NumLock;
augment interpret.repeat= False;
augment setMods.clearLocks= False; // Changed
// Unchanged
augment interpret Any + Any {
action= SetMods(modifiers=modMapMods);
};
// Changed
augment interpret Caps_Lock {
action = LockMods(modifiers = NumLock);
};
// Unchanged
augment indicator "Caps Lock" {
!allowExplicit;
whichModState= Locked;
modifiers= Lock;
};
// Changed
augment indicator "Num Lock" {
!allowExplicit;
whichModState= Base;
modifiers= Lock;
};
// New
augment indicator "Kana" {
!allowExplicit;
whichModState= Locked;
modifiers= Control;
};
};
xkb_compat "update-override" {
override virtual_modifiers NumLock;
override interpret.repeat= False;
override setMods.clearLocks= False; // Changed
// Unchanged
override interpret Any + Any {
action= SetMods(modifiers=modMapMods);
};
// Changed
override interpret Caps_Lock {
action = LockMods(modifiers = NumLock);
};
// Unchanged
override indicator "Caps Lock" {
!allowExplicit;
whichModState= Locked;
modifiers= Lock;
};
// Changed
override indicator "Num Lock" {
!allowExplicit;
whichModState= Base;
modifiers= Lock;
};
// New
override indicator "Kana" {
!allowExplicit;
whichModState= Locked;
modifiers= Control;
};
};
xkb_compat "update-replace" {
replace virtual_modifiers NumLock;
replace interpret.repeat= False;
replace setMods.clearLocks= False; // Changed
// Unchanged
replace interpret Any + Any {
action= SetMods(modifiers=modMapMods);
};
// Changed
replace interpret Caps_Lock {
action = LockMods(modifiers = NumLock);
};
// Unchanged
replace indicator "Caps Lock" {
!allowExplicit;
whichModState= Locked;
modifiers= Lock;
};
// Changed
replace indicator "Num Lock" {
!allowExplicit;
whichModState= Base;
modifiers= Lock;
};
// New
replace indicator "Kana" {
!allowExplicit;
whichModState= Locked;
modifiers= Control;
};
};