Changeset fbaebc6 for src/tests/test.py


Ignore:
Timestamp:
Jun 20, 2016, 11:29:40 AM (8 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, 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:
e5b96bf
Parents:
0534c3c
Message:

fixed small errors in test.py

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/test.py

    r0534c3c rfbaebc6  
    3939
    4040        # build, skipping to next test on error
    41         make_ret = sh("make -j 8 %s > %s 2>&1" % (test, out_file), dry_run)
     41        make_ret = sh("make -j 8 %s 2> %s 1> /dev/null" % (test, out_file), dry_run)
    4242
    4343        if make_ret == 0 :
     
    107107        tests = []
    108108        for test in options.tests:
    109                 if allTests.contains( test ) :
     109                if test in allTests :
    110110                        tests.append(test)
    111111                else :
Note: See TracChangeset for help on using the changeset viewer.