|
From: <al...@us...> - 2013-09-04 19:06:18
|
Revision: 12005
http://sourceforge.net/p/xoops/svn/12005
Author: alain91
Date: 2013-09-04 19:06:13 +0000 (Wed, 04 Sep 2013)
Log Message:
-----------
test from jenkins server
Modified Paths:
--------------
XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/phpunit.xml
XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/xoops_lib.xml
Added Paths:
-----------
XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/ant_class.xml
XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/ant_kernel.xml
XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/ant_xoops_lib.xml
Added: XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/ant_class.xml
===================================================================
--- XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/ant_class.xml (rev 0)
+++ XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/ant_class.xml 2013-09-04 19:06:13 UTC (rev 12005)
@@ -0,0 +1,14 @@
+<project name="class" default="build" basedir=".">
+ <property name="basedir" value="${project.basedir}" />
+ <target name="clean">
+ </target>
+ <target name="prepare">
+ </target>
+ <target name="phpunit">
+ <exec executable="/usr/local/bin/phpunit">
+ <arg value="--configuration=${basedir}/ant_class.xml" />
+ </exec>
+ </target>
+ <target name="build" depends="clean,prepare,phpunit" />
+</project>
+
Added: XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/ant_kernel.xml
===================================================================
--- XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/ant_kernel.xml (rev 0)
+++ XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/ant_kernel.xml 2013-09-04 19:06:13 UTC (rev 12005)
@@ -0,0 +1,14 @@
+<project name="kernel" default="build" basedir=".">
+ <property name="basedir" value="${project.basedir}" />
+ <target name="clean">
+ </target>
+ <target name="prepare">
+ </target>
+ <target name="phpunit">
+ <exec executable="/usr/local/bin/phpunit">
+ <arg value="--configuration=${basedir}/ant_kernel.xml" />
+ </exec>
+ </target>
+ <target name="build" depends="clean,prepare,phpunit" />
+</project>
+
Added: XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/ant_xoops_lib.xml
===================================================================
--- XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/ant_xoops_lib.xml (rev 0)
+++ XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/ant_xoops_lib.xml 2013-09-04 19:06:13 UTC (rev 12005)
@@ -0,0 +1,14 @@
+<project name="xoops_lib" default="build" basedir=".">
+ <property name="basedir" value="${project.basedir}" />
+ <target name="clean">
+ </target>
+ <target name="prepare">
+ </target>
+ <target name="phpunit">
+ <exec executable="/usr/local/bin/phpunit">
+ <arg value="--configuration=${basedir}/ant_xoops_lib.xml" />
+ </exec>
+ </target>
+ <target name="build" depends="clean,prepare,phpunit" />
+</project>
+
Modified: XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/phpunit.xml
===================================================================
--- XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/phpunit.xml 2013-09-04 18:17:39 UTC (rev 12004)
+++ XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/phpunit.xml 2013-09-04 19:06:13 UTC (rev 12005)
@@ -1,35 +1,37 @@
-<phpunit
- colors="false"
- verbose="false"
- stopOnError="false"
- stopOnFailure="false"
- stopOnIncomplete="false"
- stopOnSkipped="false"
- bootstrap="bootstrap.php"
- >
-
-<testsuites>
- <testsuite name="My Test Suite">
- <directory>class</directory>
- <directory>kernel</directory>
- </testsuite>
-</testsuites>
-
-<groups>
- <exclude>
- <group>slow</group>
- </exclude>
-</groups>
-
-<filter>
- <whitelist>
- <directory suffix=".php">../htdocs/class</directory>
- <directory suffix=".php">../htdocs/kernel</directory>
- </whitelist>
-</filter>
-
-<logging>
- <log type="coverage-html" target="test-report" charset="UTF-8" yui="true" />
-</logging>
-
-</phpunit>
\ No newline at end of file
+<phpunit
+ colors="false"
+ verbose="false"
+ stopOnError="false"
+ stopOnFailure="false"
+ stopOnIncomplete="false"
+ stopOnSkipped="false"
+ bootstrap="bootstrap.php"
+ >
+
+<testsuites>
+ <testsuite name="My XOOPS Test Suite">
+ <directory>class</directory>
+ <directory>kernel</directory>
+ <directory>xoops_lib</directory>
+ </testsuite>
+</testsuites>
+
+<groups>
+ <exclude>
+ <group>slow</group>
+ </exclude>
+</groups>
+
+<filter>
+ <whitelist>
+ <directory suffix=".php">class</directory>
+ <directory suffix=".php">kernel</directory>
+ <directory suffix=".php">xoops_lib</directory>
+ </whitelist>
+</filter>
+
+<logging>
+ <log type="coverage-html" target="test-report" charset="UTF-8" yui="true" />
+</logging>
+
+</phpunit>
Modified: XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/xoops_lib.xml
===================================================================
--- XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/xoops_lib.xml 2013-09-04 18:17:39 UTC (rev 12004)
+++ XoopsCore/branches/2.6.x/2.6.0_alain091/UnitTestXoops/xoops_lib.xml 2013-09-04 19:06:13 UTC (rev 12005)
@@ -1,38 +1,38 @@
-<phpunit
- colors="false"
- verbose="false"
- stopOnError="false"
- stopOnFailure="false"
- stopOnIncomplete="false"
- stopOnSkipped="false"
- bootstrap="bootstrap.php"
- >
-
-<testsuites>
- <testsuite name="My Test Suite">
- <directory>xoops_lib</directory>
- </testsuite>
-</testsuites>
-
-<groups>
- <exclude>
- <group>slow</group>
- </exclude>
-</groups>
-
-<filter>
- <whitelist>
- <directory suffix=".php">../htdocs/xoops_lib</directory>
- <exclude>
- <directory suffix=".php">../htdocs/xoops_lib/HTMLPurifier</directory>
- <directory suffix=".php">../htdocs/xoops_lib/modules</directory>
- <directory suffix=".php">../htdocs/xoops_lib/smarty</directory>
- </exclude>
- </whitelist>
-</filter>
-
-<logging>
- <log type="coverage-html" target="xoops_lib-test-report" charset="UTF-8" yui="true" />
-</logging>
-
-</phpunit>
\ No newline at end of file
+<phpunit
+ colors="false"
+ verbose="false"
+ stopOnError="false"
+ stopOnFailure="false"
+ stopOnIncomplete="false"
+ stopOnSkipped="false"
+ bootstrap="bootstrap.php"
+ >
+
+<testsuites>
+ <testsuite name="My Test Suite">
+ <directory>xoops_lib</directory>
+ </testsuite>
+</testsuites>
+
+<groups>
+ <exclude>
+ <group>slow</group>
+ </exclude>
+</groups>
+
+<filter>
+ <whitelist>
+ <directory suffix=".php">../xoops_lib</directory>
+ <exclude>
+ <directory suffix=".php">../xoops_lib/HTMLPurifier</directory>
+ <directory suffix=".php">../xoops_lib/modules</directory>
+ <directory suffix=".php">../xoops_lib/smarty</directory>
+ </exclude>
+ </whitelist>
+</filter>
+
+<logging>
+ <log type="coverage-html" target="test-report-xoops_lib" charset="UTF-8" yui="true" />
+</logging>
+
+</phpunit>
|