Changeset 342af53 for tests


Ignore:
Timestamp:
Jan 14, 2021, 12:23:14 PM (5 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
8e4aa05
Parents:
4468a70 (diff), ec19b21 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

Location:
tests
Files:
28 added
3 edited

Legend:

Unmodified
Added
Removed
  • tests/Makefile.am

    r4468a70 r342af53  
    103103
    104104mostlyclean-local :
     105        find ${builddir} -not -path './__pycache__/*' -path '*.o' -delete
     106        find ${builddir} -not -path './__pycache__/*' -path '*/.err/*.log' -delete
     107        find ${builddir} -not -path './__pycache__/*' -path '*/.out/*.log' -delete
    105108        rm -f ${EXTRA_PROGRAMS}
    106109        rm -rf __pycache__
    107         find ${builddir} -path '*.o' -delete
    108         find ${builddir} -path '*/.err/*.log' -delete
    109         find ${builddir} -path '*/.out/*.log' -delete
    110110
    111111distclean-local :
  • tests/concurrent/futures/.expect/basic.txt

    r4468a70 r342af53  
     1start
    12done
  • tests/concurrent/futures/basic.cfa

    r4468a70 r342af53  
    11#include <thread.hfa>
     2
    23enum {NFUTURES = 10};
    34
     
    8384
    8485int main() {
     86        printf( "start\n" );                            // non-empty .expect file
    8587        processor procs[2];
    8688        {
Note: See TracChangeset for help on using the changeset viewer.