Ignore:
Timestamp:
May 20, 2016, 1:37:56 PM (8 years ago)
Author:
Rob Schluntz <rschlunt@…>
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:
d9f1b2d
Parents:
21995bc
Message:

added avl_test to regression suite and changed runTests.sh to use make -j 8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/examples/runTests.sh

    r21995bc r6e3ae00  
    2626# current directory named the same; should also be an input file
    2727# tests/$test.in.txt and expected output tests/$test.out.txt
    28 tests="vector_test"
     28tests="vector_test avl_test"
    2929
    3030# log file for test output;
     
    3838for test in $tests; do
    3939        echo -n "    $test" | tee -a $logfile
    40        
     40
    4141        # build, skipping to next test on error
    42         if ! make $test > tests/$test.make.txt 2>&1; then
     42        if ! make -j 8 $test > tests/$test.make.txt 2>&1; then
    4343                echo -e "\tFAILED with build error:" | tee -a $logfile
    4444                cat tests/$test.make.txt | tee -a $logfile
Note: See TracChangeset for help on using the changeset viewer.