Mercurial > hg > octave-lyh
view test/test_contin.m @ 6478:4da9255998e3
[project @ 2007-03-29 16:31:16 by jwe]
author | jwe |
---|---|
date | Thu, 29 Mar 2007 16:31:16 +0000 |
parents | 1ad66ea35fe5 |
children | 93c65f2a5668 |
line wrap: on
line source
%% Automatically generated from DejaGNU files %% test/octave.test/contin/contin-1.m %!test %! x = [1,2]; %! a = 1; %! b = 2; %! y = [a... # comments here ok %! b]; %! assert(all (y == x)); %% test/octave.test/contin/contin-2.m %!test %! x = [1,2]; %! a = 1; %! b = 2; %! y = [a... # comments here ok %! b]; %! assert(all (y == x)); %% test/octave.test/contin/contin-3.m %!test %! x = [1,2]; %! a = 1; %! b = 2; %! y = [a... # comments here ok %! b]; %! assert(all (y == x)); %% test/octave.test/contin/contin-4.m %!test %! x = [1,2]; %! a = 1; %! b = 2; %! y = [a... # comments ok here %! b]; %! assert(all (y == x)); %% test/octave.test/contin/contin-5.m %!test %! x = [1,2]; %! a = 1; %! b = 2; %! y = [a... # comments here ok %! b]; %! assert(all (y == x)); %% test/octave.test/contin/contin-6.m %!test %! x = [1,2]; %! a = 1; %! b = 2; %! y = [a... # comments here ok %! b]; %! assert(all (y == x)); %% test/octave.test/contin/contin-7.m %!test %! x = [1;2]; %! a = 1; %! b = 2; %! y = [a... # comments here ok %! ;\ %! %! b]; %! assert(all (y == x)); %% test/octave.test/contin/contin-8.m %!test %! x = [1;2]; %! a = 1; %! b = 2; %! y = [a... # comments here ok %! ;\ %! %! b]; %! assert(all (y == x)); %% test/octave.test/contin/contin-9.m %!test %! x = [1;2]; %! a = 1; %! b = 2; %! y = [a... # comments here ok %! ;\ %! %! b]; %! assert(all (y == x)); %% test/octave.test/contin/contin-10.m %!assert(1 + ... %! 2 - \# comments here ok %! 3 / ... # comments here ok %! -1,6); %% test/octave.test/contin/contin-11.m %!function y = f (a,... %! b, ... %! c, ... % comments ok %! x, # continuation characters not required in parens %! y, \# but they should work too. %! z) %! %! y = 1; %!test %! assert(f (),1); %% test/octave.test/contin/contin-12.m %!test %!assert(1 == 1 %! && 2 == 2 %! || 3 == 5); %% test/octave.test/contin/contin-13.m %!test %! x = [1, ... %! %! ... %! %! 2]; %! y = [1;2]; %! assert(all (y == x)); %% test/octave.test/contin/contin-14.m %!test %! x = [1, ... %! %! ... %! %! 2]; %! y = [1;2]; %! assert(all (y == x)); %% test/octave.test/contin/contin-15.m %!test %! x = [1,... %! 2]; %! y = [1,2]; %! assert(all (y == x)); %% test/octave.test/contin/contin-16.m %!test %! x = [ 1 , ... %! 2]; %! y = [1,2]; %! assert(all (y == x));