...
To clean the unit testing build, use
./testing/test.bash clean
To build the unit tests, use
./testing/test.bash build
To run the built unit tests, use
./testing/test.bash run
To only run a certain TestSuite of tests, use
./testing/test.bash run "<Suite regex>:*"
whatever you pass in as the second arg, will be used as the gtest filter. You can read about how to use it here: http://google.github.io/googletest/advanced.html#running-a-subset-of-the-tests
Please use quotation marks around the filter, as it can sometimes break on certain shells without quotation marks.
Alternatively, you can use docker to do all of this. Please refer to our How-To on using docker in zp3.
...