Changes in / [39f04ec:d32c4e2]


Ignore:
Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/driver/cfa.cc

    r39f04ec rd32c4e2  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // cfa.cc --
     7// cfa.cc -- 
    88//
    99// Author           : Peter A. Buhr
     
    249249        nargs += 1;
    250250
    251         args[nargs] = "-I" CFA_INCDIR "/containers";
    252         nargs += 1;
    253 
    254251        if ( link ) {
    255252                // include the cfa library in case it's needed
     
    311308                args[nargs] = "-no-integrated-cpp";
    312309                nargs += 1;
    313                 args[nargs] = "-Wno-deprecated";
     310                args[nargs] = "-Wno-deprecated"; 
    314311                nargs += 1;
    315312                if ( ! std_flag ) {                                                             // default c99, if none specified
     
    317314                        nargs += 1;
    318315                } // if
    319                 args[nargs] = "-fgnu89-inline";
     316                args[nargs] = "-fgnu89-inline"; 
    320317                nargs += 1;
    321318                args[nargs] = ( *new string( string("-B") + Bprefix + "/" ) ).c_str();
  • src/tests/test.py

    r39f04ec rd32c4e2  
    99import os
    1010import re
    11 import stat
    1211import sys
    1312
     
    6160                return result;
    6261
    63 def fileIsExecutable(file) :
    64         try :
    65                 fileinfo = os.stat(file)
    66                 return bool(fileinfo.st_mode & stat.S_IXUSR)
    67         except Exception as inst:
    68                 print(type(inst))    # the exception instance
    69                 print(inst.args)     # arguments stored in .args
    70                 print(inst)
    71                 return False
    7262
    7363################################################################################
     
    8878                stdinput = "< .in/%s.txt" % test if isfile(".in/%s.txt" % test) else ""
    8979
    90                 if fileIsExecutable(test) :
    91                         # run test
    92                         sh("./%s %s > %s 2>&1" % (test, stdinput, out_file), dry_run)
    93                 else :
    94                         # simply cat the result into the output
    95                         sh("cat %s > %s" % (test, out_file), dry_run)
     80                # run test
     81                sh("./%s %s > %s 2>&1" % (test, stdinput, out_file), dry_run)
    9682
    9783        retcode = 0
Note: See TracChangeset for help on using the changeset viewer.