Question about llvm-test-suite

Hi! I added my tests to the llvm-test suite. I want to know how I can run them ONLY for compilation to test my compiler? I want to use LNT.

You can run make all to only compile the programs, make check would also run the programs.

If you want to only run your additional tests, it depends on how you added them. Generally, there is cmake’s TEST_SUITE_SUBDIRS to select only a subset of tests.

Michael