# To run the server only tests, write the results to a file and clean after
./build_ut.py -s server -c -f
# To run only the 'RialtoServerCreateMediaPlayerTest' test group in server
./build_ut.py -s server -gt RialtoServerCreateMediaPlayerTest.*
#To run only the specific test under 'SessionServerAppManagerTests.' in a particular component name 'manager'(with a suite name of 'RialtoServerManagerUnitTests')
./build_ut.py -s manager -gf SessionServerAppManagerTests.*
# To run any tests in all suites that 'Create' something, but exclude 'Player
./build_ut.py -gf *Create*:-*Player* |