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// <-- CLI SHELL MODE -->
8cd('SCI/etc');
9f1 = findfiles();
10f2 = findfiles(SCI+'/etc');
11if f1 <> f2 then bugmes();quit;end
12// =============================================================================
13f3 = findfiles(SCI+'/etc','*.start');
14if f3 <> 'scilab.start' then bugmes();quit;end
15// =============================================================================
16f = findfiles();
17f = findfiles(SCI);
18if size(f,'*') == [] then bugmes();quit;end
19f = findfiles(SCI+'/modules/core/macros','*.sci');
20if size(f,'*') == [] then bugmes();quit;end
21// =============================================================================
22