1//<-- CLI SHELL MODE -->
2// =============================================================================
3// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
4// Copyright (C) 2009 - DIGITEO
5//
6//  This file is distributed under the same license as the Scilab package.
7// =============================================================================
8// <-- JVM MANDATORY -->
9cd(TMPDIR);
10exec(SCI+"/modules/localization/tests/unit_tests/CreateDir.sce", -1);
11tab_ref = [
12"世界您好",
13"азеазея",
14"ハロー・ワールド",
15"حريات وحقوق",
16"תוכנית"];
17for i = 1 : size(tab_ref,'*')
18  fz = TMPDIR + filesep() + 'dir_' + tab_ref(i) + filesep() + 'file_' + tab_ref(i);
19  if ls(fz) == [] then bugmes();quit;end
20  if fileinfo(fz) == [] then bugmes();quit;end
21end
22