Changeset 3da7c19 for tests


Ignore:
Timestamp:
Jun 11, 2019, 1:36:05 PM (6 years ago)
Author:
Aaron Moss <a3moss@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
4b7cce6
Parents:
d57e349 (diff), 8548c35 (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:
1 added
4 edited
1 moved

Legend:

Unmodified
Added
Removed
  • tests/.expect/manipulatorsInput.txt

    rd57e349 r3da7c19  
    262613 wwwwwwww
    2727a
    28 b
    29 b
    30 b
     28a
    3129-1
    323015
  • tests/.in/manipulatorsInput.txt

    rd57e349 r3da7c19  
    77abcyyy
    88aaaaaaaaxxxxxxxxaabbccbbdddwwwbbbbbbbbwwwwwwwwaaaaaaaawwwwwwww
    9 abcd
     9ab
    10100xff 017 15-15
    11110xff 017 15-15
  • tests/manipulatorsInput.cfa

    rd57e349 r3da7c19  
    77// Created On       : Sat Jun  8 17:58:54 2019
    88// Last Modified By : Peter A. Buhr
    9 // Last Modified On : Mon Jun 10 08:11:03 2019
    10 // Update Count     : 7
     9// Last Modified On : Mon Jun 10 18:38:35 2019
     10// Update Count     : 8
    1111//
    1212
     
    5252                char c;
    5353                sin | c;                                                        sout | c;
    54                 sin | wdi( 3, c );                                      sout | c;
    5554                sin | ignore( c );                                      sout | c;
    56                 sin | ignore( wdi( 3, c ) );            sout | c;
    5755
    5856                signed char sc;
  • tests/sum.cfa

    rd57e349 r3da7c19  
    1111// Created On       : Wed May 27 17:56:53 2015
    1212// Last Modified By : Peter A. Buhr
    13 // Last Modified On : Sun May 19 11:21:02 2019
    14 // Update Count     : 330
     13// Last Modified On : Thu Jun  6 16:18:22 2019
     14// Update Count     : 333
    1515//
    1616
     
    111111        };
    112112        GS(int) gs;
    113         gs.x = anew( size );                                                            // create array storage for field
     113        // FIX ME, resolution problem with anew not picking up the LH type
     114        gs.x = (typeof(gs.x))anew( size );                                      // create array storage for field
    114115        s = 0; v = low;
    115116        for ( int i = 0; i < size; i += 1, v += 1 ) {
Note: See TracChangeset for help on using the changeset viewer.