Author: eli
Date: Wed Aug 1 21:28:49 2012
New Revision: 1368257
URL: http://svn.apache.org/viewvc?rev=1368257&view=rev
Log:
HADOOP-8480. The native build should honor -DskipTests. Contributed by Colin
Patrick McCabe
Modified:
hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/pom.xml
Modified: hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/pom.xml
URL:
http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/pom.xml?rev=1368257&r1=1368256&r2=1368257&view=diff
==============================================================================
--- hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/pom.xml (original)
+++ hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/pom.xml Wed Aug 1
21:28:49 2012
@@ -238,6 +238,9 @@ http://maven.apache.org/xsd/maven-4.0.0.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
+ <configuration>
+ <skipTests>false</skipTests>
+ </configuration>
<executions>
<execution>
<id>compile-proto</id>
@@ -431,11 +434,17 @@ http://maven.apache.org/xsd/maven-4.0.0.
<target>
<property name="compile_classpath"
refid="maven.compile.classpath"/>
<property name="test_classpath"
refid="maven.test.classpath"/>
- <exec
executable="${project.build.directory}/native/test_libhdfs_threaded"
dir="${project.build.directory}/native/" failonerror="true">
+ <exec executable="sh" failonerror="true"
dir="${project.build.directory}/native/">
+ <arg value="-c"/>
+ <arg value="[ x$SKIPTESTS = xtrue ] ||
${project.build.directory}/native/test_libhdfs_threaded"/>
<env key="CLASSPATH"
value="${test_classpath}:${compile_classpath}"/>
+ <env key="SKIPTESTS" value="${skipTests}"/>
</exec>
- <exec
executable="${project.build.directory}/native/test_native_mini_dfs"
dir="${project.build.directory}/native/" failonerror="true">
+ <exec executable="sh" failonerror="true"
dir="${project.build.directory}/native/">
+ <arg value="-c"/>
+ <arg value="[ x$SKIPTESTS = xtrue ] ||
${project.build.directory}/native/test_libhdfs_threaded"/>
<env key="CLASSPATH"
value="${test_classpath}:${compile_classpath}"/>
+ <env key="SKIPTESTS" value="${skipTests}"/>
</exec>
</target>
</configuration>