On 2016-03-23, Kornel Benko wrote: > Am Dienstag, 22. März 2016 um 15:12:36, schrieb Guenter Milde > <mi...@users.sf.net>
>> ... >> >> The following simple patch allows to specify all three cases: >> >> a) "words" joined by '_' -> one label (or sublabel) >> >> b) "words" joined by ':' -> label + subordinate label >> >> c) "words" separated with any <separator> -> independent labels (same >> >> depth) ... > Modified patch for ExportTests.cmake attached > (Use a string to specify allowed chars in a label) ... > +# Used to select labels from .*Tests files > +set(label_chars "[a-zA-Z]+") But this is the "old" set. I think we should change this to +set(label_chars "[a-zA-Z_:]+") ... Günter