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
9// <-- JVM MANDATORY -->
10
11cd(TMPDIR);
12
13exec(SCI+"/modules/localization/tests/unit_tests/CreateDir.sce", -1);
14
15tab_ref = [
16"世界您好",
17"азеазея",
18"ハロー・ワールド",
19"เฮลโลเวิลด์",
20"حريات وحقوق",
21"תוכנית"];
22
23cd(SCI);
24
25for i = 1 : size(tab_ref,'*')
26  pathnam = TMPDIR + filesep() + 'dir_' + tab_ref(i);
27  filenam = pathnam + filesep() + 'file_' + tab_ref(i);
28  if deletefile(filenam) <> %t then pause,end
29  if ls(pathnam) <> [] then pause,end
30end
31