Error Buddy

Do you have an error message from your application? Then find the answer with Error Buddy. You can search over 40000 source code files and troubleshooting documents using our beta lucene/nutch search interface or if you prefer, search as normal using google. With LXR technology you can drill right down into the line of source code where it came from with full cross-referencing.

If after searching you didn't get your ideal answer, or you are still unclear what the error means, you can choose to post that question to the community forums following the link included in the search results.

corestack/ phpMyAdmin-2.6.1-pl3/ build.xml [1.6]
001 <project name="Tests" basedir=".">
002 
003     <property name="test.data.dir"
004               value="../test/output/data"/>
005     <property name="src.dir"
006               value="../test/src/com/spikesource/phpmyadmin/httpunit"/>
007     <property name="class.dir"
008               value="../test/src"/>
009     <property name="httpunit.home"
010               value="/home/share/software/common/httpunit-1.6"/>
011 
012 
013     <path id="build.classpath">
014         <fileset dir="${httpunit.home}/lib">
015           <include name="httpunit.jar"/>
016         </fileset>
017         <fileset dir="${httpunit.home}/jars">
018           <include name="junit.jar"/>
019           <include name="Tidy.jar"/>
020           <include name="js.jar"/>
021         </fileset>
022         <pathelement Location="../test/src"/>
023     </path>
024 
025     <target name="compile">
026       <javac debug="on" failonerror="true"
027              destdir="${class.dir}" srcdir="${src.dir}">
028         <classpath refid="build.classpath"/>
029       </javac>
030     </target>
031 
032     <target name="httpunittest" depends="compile">
033       <mkdir dir="${test.data.dir}"/>
034 
035       <junit printsummary="false" haltonerror="yes" fork="yes"
036              dir="../test/src">
037 
038         <classpath refid="build.classpath"/>
039 
040         <formatter type="brief" usefile="false"/>
041         <formatter type="xml"/>
042 
043         <batchtest todir="${test.data.dir}">
044           <fileset dir="../test/src">
045             <include name="com/spikesource/phpmyadmin/httpunit/TestphpMyAdmin.class"/>
046           </fileset>
047         </batchtest>
048 
049       </junit>
050 
051       <junitreport todir="${test.data.dir}">
052         <fileset dir="${test.data.dir}">
053           <include name="TEST-*.xml"/>
054         </fileset>
055         <report format="frames" todir="${test.report.dir}"/>
056       </junitreport>
057     </target>
058 
059     <property name="httpunit.home.windows"
060               value="/share/software/common/httpunit-1.6"/>
061 
062     <path id="build.classpath.windows">
063         <fileset dir="${httpunit.home.windows}/lib">
064           <include name="httpunit.jar"/>
065         </fileset>
066         <fileset dir="${httpunit.home.windows}/jars">
067           <include name="junit.jar"/>
068           <include name="Tidy.jar"/>
069           <include name="js.jar"/>
070         </fileset>
071         <pathelement Location="../test/src"/>
072     </path>
073 
074     <target name="compile-windows">
075       <javac debug="on" failonerror="true"
076              destdir="${class.dir}" srcdir="${src.dir}">
077         <classpath refid="build.classpath.windows"/>
078       </javac>
079     </target>
080 
081     <target name="httpunittest-windows" depends="compile-windows">
082       <mkdir dir="${test.data.dir}"/>
083 
084       <junit printsummary="false" haltonerror="yes" fork="yes"
085              dir="../test/src">
086 
087         <classpath refid="build.classpath.windows"/>
088 
089         <formatter type="brief" usefile="false"/>
090         <formatter type="xml"/>
091 
092         <batchtest todir="${test.data.dir}">
093           <fileset dir="../test/src">
094             <include name="com/spikesource/phpmyadmin/httpunit/TestphpMyAdmin.class"/>
095           </fileset>
096         </batchtest>
097 
098       </junit>
099 
100       <junitreport todir="${test.data.dir}">
101         <fileset dir="${test.data.dir}">
102           <include name="TEST-*.xml"/>
103         </fileset>
104         <report format="frames" todir="${test.report.dir}"/>
105       </junitreport>
106     </target>
107 
108 </project>

Powered by Lucene and the LXR engine.