Changeset cb2e8ce


Ignore:
Timestamp:
Jul 16, 2016, 9:19:11 AM (9 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
873ffb7
Parents:
5ed9061
Message:

fixed machine type issue in tests, tentative fix for full build

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Jenkins/FullBuild

    r5ed9061 rcb2e8ce  
    2828                def out_dir = pwd tmp: true
    2929                sh "mkdir -p ${out_dir}"
     30
     31                //checkout the code to make sure this is a valid git repo
     32                checkout scm
    3033
    3134                //parse git logs to find what changed
  • src/tests/test.py

    r5ed9061 rcb2e8ce  
    2626                makefile = file.read()
    2727                m = re.search("CFA_FLAGS\s*=\s*-m(.*)", makefile)
    28                 return m.group(1)
     28                return m.group(1) if m else '64'
    2929
    3030# reads the directory ./.expect and indentifies the tests
Note: See TracChangeset for help on using the changeset viewer.