there is a Install.sh file which installs project in virtual directory In this file i have following property tag for specifying properties file
<property file="install.properties" /> question is how can these properties and values could be refered again ..for example if i want to use them again in insatll.sh for some purpose install.properties file #virtual root dir install.root=/tmp/testinstall #server software install.program=/usr/local/proxy #server's configuration install.confdir=/etc/proxy #IRML files install.irml=/var/proxy/irml #OMML files install.omml=/var/proxy/omml #variable space install.var=/var #store proxyltes install.prox=/var/proxylet #java virtual install.java_home=/usr/java/jdk1.3.0_03/jre -----Original Message----- From: Christopher Berry [mailto:[EMAIL PROTECTED]] Sent: 16 November 2001 15:21 To: 'Ant Users List' Subject: RE: log4j + JUnit + Ant 1.4 Yeah. It all works fine with a FileAppender. Only this is not rolled in nicely with the JUnit Formatter's output, and adds another artifact to the mix. I am thinking of using Ant to post process the generated HTML files to include a link, if any, to the log4j file. Currently, AFAIK, the junitreport generated HTML doesn't refer to it's included output right anyway. Cheers, -- Chris -----Original Message----- From: Alan Pearlman Spencer [mailto:[EMAIL PROTECTED]] Sent: Friday, November 16, 2001 3:07 AM To: Ant Users List Subject: RE: log4j + JUnit + Ant 1.4 I have used these together... I think is is because ANT tried to catch output (System.out) from tasks. I would use a file appender if I were you... Alan. -----Original Message----- From: Christopher Berry [mailto:[EMAIL PROTECTED]] Sent: 15 November 2001 21:59 To: Ant-User (E-mail) Subject: log4j + JUnit + Ant 1.4 Greetings, I am trying to get the junit task to run properly with log4j. Has anyone else been successful with this?? If I print to System.out in my JUnit Tests, the output is properly created. But when I use log4j to a ConsoleAppender, it is not. I am using the following Target definition:: <target name="run_junit" description="Run Single JUnit test" if="testcase" depends="quick" > <junit printsummary="withOutAndErr" haltonfailure="yes" fork="true" > <classpath> <pathelement location="${efc.pkgs.unpacked}" /> <fileset dir="${efc.pkgs.lib}"> <include name="**/*.jar" /> </fileset> <pathelement location="${efc.pkgs.unpacked.classes}" /> </classpath> <formatter type="plain" usefile="true" /> <test name="${testcase}" /> </junit> </target> NOTE: In order to see my output in the JUnit Formatters, I ended up having to add the following lines to JUnitTestRunner::run(). System.setOut( systemOut ); System.setErr( systemError ); Without these lines I never saw *any* output at all???? Thanks, -- Chris Chris Berry --- [EMAIL PROTECTED] -- 512-323-9479 -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
