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
11tmp = cd(TMPDIR);
12exec(SCI+"/modules/localization/tests/unit_tests/CreateDir.sce", -1);
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 = cd(sz);
27	if (a <> (tmp + filesep() + sz)) then pause, end
28	cd(TMPDIR);
29end
30