We have the need to run clang regression tests in Windows with llvm versions 2.6, 2.7 and 2.8. We have read that this can now be done with "lit".
1. From what we can see, lit does not run with windows. Or does it?
C:\Python26\python.exe lit.py -sv --no-progress-bar "C:\prog\old_llvm\2.7\llvm\tools\clang\test"
lit.py: lit.cfg:74: fatal: No site specific configuration available!
2. Can clang regression be run from Visual Studio?
3. Or is it the case that the Visual Studio project "clang-test" has been removed from versions of llvm/clang greater than 2.6?
We have the need to run clang regression tests in Windows with llvm
versions 2.6, 2.7 and 2.8. We have read that this can now be done with
"lit".
1. From what we can see, lit does not run with windows. Or does it?
lit works very well on Windows.. I use it everyday.
C:\Python26\python.exe lit.py -sv --no-progress-bar
"C:\prog\old_llvm\2.7\llvm\tools\clang\test"
lit.py: lit.cfg:74: fatal: No site specific configuration available!
try --param=build_config=Release
2. Can clang regression be run from Visual Studio?
yes, generate the .sln using cmake then select the "clang-test"
project, right click and build.
3. Or is it the case that the Visual Studio project "clang-test" has
been removed from versions of llvm/clang greater than 2.6?
We have the need to run clang regression tests in Windows with llvm
versions 2.6, 2.7 and 2.8. We have read that this can now be done with
"lit".
1. From what we can see, lit does not run with windows. Or does it?
C:\Python26\python.exe lit.py -sv --no-progress-bar
"C:\prog\old_llvm\2.7\llvm\tools\clang\test"
lit.py: lit.cfg:74: fatal: No site specific configuration available!
You need to run `make test` in llvm/tools/clang once to create some
important file (you can stop it once it starts running tests).