Package mmrnmhrm.core.compiler_installs

Examples of mmrnmhrm.core.compiler_installs.DMDInstallType


 
  @Test
  public void testLibraryLocations() throws Exception { testLibraryLocations$(); }
  public void testLibraryLocations$() throws Exception {
    Path compilerPath = epath(CompilerInstallDetector_Test.MOCK_DMD_CMDPATH);
    LibraryLocation[] libLocations = getLibraryLocations(new DMDInstallType(), compilerPath);
   
    checkLibLocations(libLocations, compilerPath.removeLastSegments(3),
      "src/druntime/import", "src/phobos")
  }
View Full Code Here


 
  @Test
  public void testLibraryLocUnix() throws Exception { testLibraryLocUnix$(); }
  public void testLibraryLocUnix$() throws Exception {
    Path compilerPath = epath(CompilerInstallDetector_Test.MOCK_DMD2_SYSTEM_CMDPATH);
    LibraryLocation[] libLocations = getLibraryLocations(new DMDInstallType(), compilerPath);
   
    checkLibLocations(libLocations, compilerPath.removeLastSegments(3),
      "usr/include/dmd/druntime/import", "usr/include/dmd/phobos");    
  }
View Full Code Here

 
  @Test
  public void testLibraryLocUnix2() throws Exception { testLibraryLocUnix2$(); }
  public void testLibraryLocUnix2$() throws Exception {
    Path compilerPath = epath(CompilerInstallDetector_Test.MOCK_DMD2_SYSTEM2_CMDPATH2);
    LibraryLocation[] libLocations = getLibraryLocations(new DMDInstallType(), compilerPath);
   
    checkLibLocations(libLocations, compilerPath.removeLastSegments(3),
      "include/d/dmd/druntime/import", "include/d/dmd/phobos")
  }
View Full Code Here

TOP

Related Classes of mmrnmhrm.core.compiler_installs.DMDInstallType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.