summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorMatthijs Kooijman <matthijs@stdin.nl>2008-06-24 13:01:57 +0000
committerMatthijs Kooijman <matthijs@stdin.nl>2008-06-24 13:01:57 +0000
commit5b80c663e7662fcf24c764f0cd1b2671958689b8 (patch)
tree91730a53f22cfb754f377baaff3f1ff467e98946 /autoconf
parent31ce08facea459c8793bd24d64054b1b0b763356 (diff)
downloadllvm-5b80c663e7662fcf24c764f0cd1b2671958689b8.tar.gz
llvm-5b80c663e7662fcf24c764f0cd1b2671958689b8.tar.bz2
llvm-5b80c663e7662fcf24c764f0cd1b2671958689b8.tar.xz
Allow the test suite to be checked out into projects/test-suite.
We will keep the old projects/llvm-test working for existing installs. The changes to configure are made manually, since I lack autoconf-2.6. Someone might want to run AutoGen.sh to see if that changes anything. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52675 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 15cfa347c3..42d2985d53 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -70,7 +70,10 @@ do
sample) AC_CONFIG_SUBDIRS([projects/sample]) ;;
privbracket) AC_CONFIG_SUBDIRS([projects/privbracket]) ;;
llvm-stacker) AC_CONFIG_SUBDIRS([projects/llvm-stacker]) ;;
+ # llvm-test is the old name of the test-suite, kept here for backwards
+ # compatibility
llvm-test) AC_CONFIG_SUBDIRS([projects/llvm-test]) ;;
+ test-suite) AC_CONFIG_SUBDIRS([projects/test-suite]) ;;
llvm-reopt) AC_CONFIG_SUBDIRS([projects/llvm-reopt]);;
llvm-gcc) AC_CONFIG_SUBDIRS([projects/llvm-gcc]) ;;
llvm-java) AC_CONFIG_SUBDIRS([projects/llvm-java]) ;;