ctest with LABELS to classify tests

In my software group we have a test suite that is controlled and run using bash scripts.
I’m proposing using CTest and some python to replace these scripts. The test suite contains around 50 cases but we are planning on expanding this list to encompass a larger variety of cases.
At a previous employer I believe we used CTest with LABELS to be able to control which tests were being run. For instance BASIC,LARGE_TESTS, PERIODIC_MESH, BOUNDARY_LAYERS .

I can’t remember the syntax to set these labels up within the CMake framework and the documentation regarding LABELS or any other type of classification is brief.

Ideally, I want for each test (CMakeLists.txt file) have a line something like
add_test(NAME ${TESTNAME} COMMAND runATest.py ${STAR_HOME} ${TESTNAME} )
set(LABELS BASIC BOUNDARY_LAYERS)

and then I can run
ctest -L BASIC -L PERIODIC_MESH
and only the tests with the appropriate labels are run.

Are LABELS the appropriate tool to be using here? If so, what is the syntax to set this up? Can ctest deal with multiple labels as I would like?

If LABELS are not appropriate, what should I be using?

LABELS is documented as a “test property”. These are manipulated either via set_tests_properties or set_property:

set_property(TEST test1 test2 APPEND
  PROPERTY LABELS label1 label2)