Cosmetic change (Octave unit test).

(cherry picked from commit 48ee13646a072d0ad9466f901f2d048594717d71)
time-shift
Stéphane Adjemian(Charybdis) 2018-07-17 15:36:29 +02:00
parent 0d27bd8dea
commit 8b0d673458
1 changed files with 14 additions and 14 deletions

View File

@ -58,31 +58,31 @@ end
%@test:1
%$ t = false(3,1);
%$ mkdir toto
%$ mkdir toto;
%$ cd toto
%$ mkdir titi
%$ mkdir tata
%$ mkdir titi;
%$ mkdir tata;
%$ cd tata
%$ mkdir tutu
%$ mkdir tutu;
%$ cd tutu
%$ system('touch a.m')
%$ system('touch a.m');
%$ cd ..
%$ system('touch b.m')
%$ system('touch c.m')
%$ system('touch b.m');
%$ system('touch c.m');
%$ cd ../titi
%$ system('touch d.m')
%$ system('touch d.m');
%$ cd ..
%$ pause(1)
%$ system('touch e.m')
%$ system('touch e.m');
%$ t(1) = isequal(isolder('e.m'), false);
%$ pause(1)
%$ system('touch tata/tutu/a.m')
%$ system('touch tata/b.m')
%$ system('touch tata/c.m')
%$ system('touch titi/d.m')
%$ system('touch tata/tutu/a.m');
%$ system('touch tata/b.m');
%$ system('touch tata/c.m');
%$ system('touch titi/d.m');
%$ t(2) = isequal(isolder('e.m'), true);
%$ pause(1)
%$ system('touch e.m')
%$ system('touch e.m');
%$ t(3) = isequal(isolder('e.m'), false);
%$ cd ..
%$ if isoctave()