You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Arpit Agarwal (JIRA)" <ji...@apache.org> on 2013/02/07 01:56:12 UTC

[jira] [Created] (HADOOP-9290) Some testsunable to load native dll on Windows

Arpit Agarwal created HADOOP-9290:
-------------------------------------

             Summary: Some testsunable to load native dll on Windows
                 Key: HADOOP-9290
                 URL: https://issues.apache.org/jira/browse/HADOOP-9290
             Project: Hadoop Common
          Issue Type: Bug
          Components: build, native
    Affects Versions: trunk-win
            Reporter: Arpit Agarwal
            Assignee: Arpit Agarwal


Some tests are unable to load the native DLL on Windows. The culprit appears to be an incorrect PATH configuration for the native-win profile in hadoop-project/pom.xml.

{code:title=hadoop-project/pom.xml|borderStyle=dashed}
    <profile>
      <id>native-win</id>
      <activation>
        <os>
          <family>Windows</family>
        </os>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
              <environmentVariables>
                <!-- Specify where to look for the native DLL on Windows -->
                <PATH>${env.PATH};${basedir}\..\..\hadoop-common-project\hadoop-common\target\bin;</PATH>
              </environmentVariables>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
{code}

This is evaluated independently by each project and the relative path is not always correct.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira