GTest is creating a XML Report file, when the executeable is invoked with -gtest_output=xml:Name.xml. The XML File contains a summary of every testsuite. My question is, is it possible to create a XML Report for each testsuite?
According to the picture, I want to have 6 different XML Reports for each testsuite. Is this possible?
In CppuTest, it is possible. It does this automatically.

I don't think there is a way to put them into separate files, however, you can at least create each file separately using
gtest_outputandgtest_filter.Once you created your tests's executable run it with the following parameters:
You can easily write a script to generate these commands for your testsuites.