1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-29 13:37:15 +00:00

Enable path completion when typing the TESTSUITE= option by allowing the

test directory to precede the test suite name. That is, it will strip off
test/ from TESTSUITE which allows path completion from the command line.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31662 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2006-11-11 01:02:45 +00:00
parent 41e53fd39b
commit b18ec660cc

@ -24,6 +24,7 @@ include Makefile.tests
ifdef TESTSUITE
CLEANED_TESTSUITE := $(patsubst %/,%,$(TESTSUITE))
CLEANED_TESTSUITE := $(patsubst test/%,%,$(CLEANED_TESTSUITE))
RUNTESTFLAGS := --tool $(CLEANED_TESTSUITE)
endif