Changeset 2226 for trunk/tsuite

Show
Ignore:
Timestamp:
07/19/08 00:47:50 (6 months ago)
Author:
gary
Message:

script can not access source & obj files with relative path

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/tsuite/programs/run_programs.pl

    r1923 r2226  
    99# location of source and object files 
    1010$DirSource  = "c:/Projects/Cloudy/trunk/source_hot/"; 
     11$DirSource  = "../../../source/"; 
    1112 
    1213if( $UseGcc ) 
     
    1415        # object tfiles for gcc 
    1516        $DirObject  = "c:/Projects/Cloudy/trunk/source/sys_gcc"; 
     17        $DirObject  = "../../../source/sys_gcc"; 
    1618} 
    1719else 
    1820{ 
    1921        $DirObject  = "c:/Projects/Cloudy/trunk/icl/release"; 
     22        $DirObject  = "..\\..\\..\\icl\\release\\\\"; 
    2023} 
    2124 
     
    4548     else 
    4649     { 
    47         system( "icl  $out.cpp /I\"$DirSource\" \"$DirObject\"/*.obj  "); 
     50        system( "icl  $out.cpp /I\"$DirSource\" \"$DirObject\"*.obj  "); 
    4851        $exec = "$out.exe" ; 
    4952     }