diff options
author | Chris Lattner <sabre@nondot.org> | 2004-12-12 21:39:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-12-12 21:39:49 +0000 |
commit | 60bdce6fd0687b2dad96079500adea4be76c6505 (patch) | |
tree | 315655258f6e7cda3afb6289a8cc0fc278e3b9b7 /test | |
parent | 869f45937b843cf342865ba5b03196df0601d10b (diff) | |
download | external_llvm-60bdce6fd0687b2dad96079500adea4be76c6505.zip external_llvm-60bdce6fd0687b2dad96079500adea4be76c6505.tar.gz external_llvm-60bdce6fd0687b2dad96079500adea4be76c6505.tar.bz2 |
Dejagnu doesn't work if you do TESTSUITE=.../
You can't pass the trailing / into Dejagnu, so make the makefile strip it off
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18836 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 5aa74d3..7e3d129 100644 --- a/test/Makefile +++ b/test/Makefile @@ -23,7 +23,8 @@ include Makefile.tests #===------------------------------------------------------------------------===# ifdef TESTSUITE -RUNTESTFLAGS := --tool $(TESTSUITE) +CLEANED_TESTSUITE := $(patsubst %/,%,$(TESTSUITE)) +RUNTESTFLAGS := --tool $(CLEANED_TESTSUITE) endif check-local:: site.exp |