Changeset 22042

Show
Ignore:
Timestamp:
08/27/08 14:53:12 (3 months ago)
Author:
moritz
Message:

[t/spec] some whitespace disambiguations

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S03-junctions/boolean-context.t

    r22041 r22042  
    1818ok !(all(1,undef)), 'all(1,undef) in boolean context'; 
    1919 
    20 ok ?(1|undef), '1|undef in boolean context'; 
    21 ok ?(undef|1), 'undef|1 in boolean context'; 
    22 ok !(1&undef), '1&undef in boolean context'; 
    23 ok !(undef&1), 'undef&1 in boolean context'; 
    24 ok ?(1^undef), '1^undef in boolean context'; 
    25 ok ?(undef^1), 'undef^1 in boolean context'; 
     20ok ?(1 | undef), '1|undef in boolean context'; 
     21ok ?(undef | 1), 'undef|1 in boolean context'; 
     22ok !(1 & undef), '1&undef in boolean context'; 
     23ok !(undef & 1), 'undef&1 in boolean context'; 
     24ok ?(1 ^ undef), '1^undef in boolean context'; 
     25ok ?(undef ^ 1), 'undef^1 in boolean context'; 
    2626 
    27 ok ?(-1|undef), '-1|undef in boolean context'; 
    28 ok ?(undef|-1), 'undef|-1 in boolean context'; 
    29 ok !(-1&undef), '-1&undef in boolean context'; 
    30 ok !(undef&-1), 'undef&-1 in boolean context'; 
    31 ok ?(-1^undef), '-1^undef in boolean context'; 
    32 ok ?(undef^-1), 'undef^-1 in boolean context'; 
     27ok ?(-1 | undef), '-1|undef in boolean context'; 
     28ok ?(undef | -1), 'undef|-1 in boolean context'; 
     29ok !(-1 & undef), '-1&undef in boolean context'; 
     30ok !(undef & -1), 'undef&-1 in boolean context'; 
     31ok ?(-1 ^ undef), '-1^undef in boolean context'; 
     32ok ?(undef ^ -1), 'undef^-1 in boolean context'; 
    3333 
    3434(1|undef && pass '1|undef in boolean context') || fail '1|undef in boolean context'; 
     
    4040(1^undef && pass '1^undef in boolean context') || fail '1^undef in boolean context'; 
    4141 
    42 ok !(0|undef), '0|undef in boolean context'; 
    43 ok !(undef|0), 'undef|0 in boolean context'; 
    44 ok !(0&undef), '0&undef in boolean context'; 
    45 ok !(undef&0), 'undef&0 in boolean context'; 
    46 ok !(0^undef), '0^undef in boolean context'; 
    47 ok !(undef^0), 'undef^0 in boolean context'; 
     42ok !(0 | undef), '0|undef in boolean context'; 
     43ok !(undef | 0), 'undef|0 in boolean context'; 
     44ok !(0 & undef), '0&undef in boolean context'; 
     45ok !(undef & 0), 'undef&0 in boolean context'; 
     46ok !(0 ^ undef), '0^undef in boolean context'; 
     47ok !(undef ^ 0), 'undef^0 in boolean context'; 
    4848 
    4949# this can in principle be TODOed, but fudge doesn't understand the test