1// =============================================================================
2// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3// Copyright (C) 2009 - DIGITEO - Allan CORNET
4//
5//  This file is distributed under the same license as the Scilab package.
6// =============================================================================
7
8// <-- CLI SHELL MODE -->
9
10cd('SCI/etc');
11f1 = findfiles();
12f2 = findfiles(SCI+'/etc');
13if f1 <> f2 then pause,end
14// =============================================================================
15f3 = findfiles(SCI+'/etc','*.start');
16if f3 <> 'scilab.start' then pause,end
17// =============================================================================
18f = findfiles();
19f = findfiles(SCI);
20if size(f,'*') == [] then pause,end
21f = findfiles(SCI+'/modules/core/macros','*.sci');
22if size(f,'*') == [] then pause,end
23// =============================================================================