xcodebuild -workspace aWorkspace -scheme aScheme test
both compiles and runs the tests associated with the scheme, but it doesn't show the compilation of the test suite. If there is a compilation error in a test source file, I only get ** TEST FAILED **
which certainly isn't very helpful when trying to develop in Vim.
Is there a way to make xcodebuild output the compilation of the test source files, just as with xcodebuild build
shows the compilation of the regular source files?