[llvm-commits] CVS: llvm/autoconf/configure.ac

Reid Spencer reid at x10sys.com
Sun Nov 7 15:29:50 PST 2004



Changes in directory llvm/autoconf:

configure.ac updated: 1.127 -> 1.128
---
Log message:

Add the RUNTEST autoconf onfiguration variable for Deja-gnu support. This 
tool runs Deja-gnu test suites. The 'make' variable RUNTEST is now set 
automatically in the Makefile.config file.


---
Diffs of the changes:  (+6 -4)

Index: llvm/autoconf/configure.ac
diff -u llvm/autoconf/configure.ac:1.127 llvm/autoconf/configure.ac:1.128
--- llvm/autoconf/configure.ac:1.127	Thu Oct 28 08:35:00 2004
+++ llvm/autoconf/configure.ac	Sun Nov  7 17:29:39 2004
@@ -218,15 +218,17 @@
 esac
 AC_SUBST(ETAGSFLAGS,$ETAGSFLAGS)
 AC_PATH_PROG(PYTHON,[python],[true python])
-if test "$PYTHON" = "false"
-then
+if test "$PYTHON" = "false" ; then
 	AC_MSG_WARN([Python is required for the test suite, but it was not found])
 fi
 AC_PATH_PROG(QMTEST,[qmtest],[true qmtest])
-if test "$QMTEST" = "false"
-then
+if test "$QMTEST" = "false" ; then
 	AC_MSG_WARN([QMTest is required for the test suite, but it was not found])
 fi
+AC_PATH_PROG(RUNTEST,[runtest],[true runtest])
+if test "$RUNTEST" = "false" ; then
+  AC_MSG_WARN([runtest (Deja-Gnu) is required for the test sute, but it was not found])
+fi
 
 dnl Verify that the version of python available is high enough for qmtest
 pyversion=`$PYTHON -V 2>&1 | cut -d\  -f2`






More information about the llvm-commits mailing list