[Jukebox-cvs] CVS update: J4/src/scripts/test MultipleConfigurationElements.in Makefile.am
Brought to you by:
vtt
From: CVS B. <vt...@fr...> - 2000-11-02 08:51:00
|
User: vt Date: 00/11/01 23:55:50 Modified: src/scripts/test Makefile.am Added: src/scripts/test MultipleConfigurationElements.in Log: Added the test case for checking the proper handling of the multiple value configuration elements. Revision Changes Path 1.2 +5 -1 J4/src/scripts/test/Makefile.am CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/J4/src/scripts/test/Makefile.am?annotate=1.2&cvsroot=jukebox4 CVSWeb: View this file: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/J4/src/scripts/test/Makefile.am?rev=1.2&content-type=text/x-cvsweb-markup&cvsroot=jukebox4 CVSWeb: Diff to previous version: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/J4/src/scripts/test/Makefile.am.diff?r1=1.2&r2=1.1&cvsroot=jukebox4 ----------------------------------- Index: Makefile.am =================================================================== RCS file: /usr/local/cvs/J4/src/scripts/test/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- Makefile.am 2000/10/25 06:56:50 1.1 +++ Makefile.am 2000/11/02 06:55:50 1.2 @@ -1,12 +1,14 @@ -# $Id: Makefile.am,v 1.1 2000/10/25 06:56:50 vt Exp $ +# $Id: Makefile.am,v 1.2 2000/11/02 06:55:50 vt Exp $ bin_PROGRAMS = LruCache \ + MultipleConfigurationElements \ SemaphoreGroup \ RWLock bindir = ${prefix}/test/bin LruCache_SOURCES = LruCache +MultipleConfigurationElements_SOURCES = MultipleConfigurationElements SemaphoreGroup_SOURCES = SemaphoreGroup RWLock_SOURCES = RWLock @@ -17,6 +19,8 @@ ${RM} -f *~ .*~ LruCache: + +MultipleConfigurationElements: SemaphoreGroup: 1.1 J4/src/scripts/test/MultipleConfigurationElements.in CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/J4/src/scripts/test/MultipleConfigurationElements.in?annotate=1.1&cvsroot=jukebox4 CVSWeb: View this file: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/J4/src/scripts/test/MultipleConfigurationElements.in?rev=1.1&content-type=text/x-cvsweb-markup&cvsroot=jukebox4 ----------------------------------- Index: MultipleConfigurationElements.in =================================================================== #! /bin/sh # # $Id: MultipleConfigurationElements.in,v 1.1 2000/11/02 06:55:50 vt Exp $ TARGET_CLASSPATH=@prefix@/lib/@PACKAGE@.jar:\ @JMX_CLASSES@:\ @JMXTOOLS_CLASSES@:\ @XERCES_CLASSES@:\ ${CLASSPATH} JAVA_OPT="@JAVA_OPT@" @JAVAX@ ${J4WRAPPER} -Djukebox.confpath="@prefix@/test/etc" gnu.j4.test.unit.MultipleConfigurationElements |