We already print available features, and it can be useful to print
substitutions as well since those are a pretty fundamental part of
a test suite. We could also consider printing other things like the
test environment, however the need doesn't appear to be as strong.
Before:
$ lit -sv libcxx/test --show-suites -- Test Suites -- libc++ - 6350 tests Source Root: [...] Exec Root : [...] Available Features : -faligned-allocation -fsized-deallocation [...]
After:
$ lit -sv libcxx/test --show-suites -- Test Suites -- libc++ - 6350 tests Source Root: [...] Exec Root : [...] Available Features : -faligned-allocation -fsized-deallocation [...] Available Substitutions : %{build_module} => [...] %{build} => %{cxx} -o [...]
Let's change this to always print available_features and substitutions. Not having any is rare and that is information as well.