-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TestRunner enhancement request #1727
Comments
TestRunner.sh has been augmented to process a list of files, each of which it Note that the example is much more easily done with: make check TESTSUITE=test/whatever Fixed with this patch: |
Not working: $ cd llvm/test/Assembler |
Fixed with this patch: |
Excellent, thanks Reid! |
Extended Description
The new TestRunner is much nicer than the old one, and very handy. One (hopefully easy) feature request:
It would be nice for TestRunner to take multiple tests on the command line. I usually do:
cd test/whatever; find . -name *.ll -print -exec ../../TestRunner.sh {} ;
It would be much nicer to do: cd test/whatever; TestRunner *
-Chris
The text was updated successfully, but these errors were encountered: