1// =============================================================================
2// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3// Copyright (C) 2009 - DIGITEO
4//
5//  This file is distributed under the same license as the Scilab package.
6// =============================================================================
7
8// <-- CLI SHELL MODE -->
9
10chdir(TMPDIR);
11
12warning("off");
13
14tab_ref = [
15"世界您好",
16"азеазея",
17"ハロー・ワールド",
18"เฮลโลเวิลด์",
19"حريات وحقوق",
20"프로그램",
21"프로그램",
22"תוכנית"];
23
24for i = 1 : size(tab_ref,'*')
25	sz = "dir_" + tab_ref(i);
26	a = createdir(sz);
27	if(a <> %T) then pause,	end
28	b = cd(TMPDIR + filesep() + sz);
29	if(b <> (TMPDIR + filesep() + sz)) then pause, end
30	cd(TMPDIR);
31	removedir(sz);
32end
33