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 -->
9tmp = cd(TMPDIR);
10exec(SCI+"/modules/localization/tests/unit_tests/CreateDir.sce", -1);
11tab_ref = [
12"世界您好",
13"азеазея",
14"ハロー・ワールド",
15"เฮลโลเวิลด์",
16"حريات وحقوق",
17"프로그램",
18"프로그램",
19"תוכנית"];
20for i = 1 : size(tab_ref,'*')
21	sz = "dir_" + tab_ref(i);
22	a = cd(sz);
23	if (a <> (tmp + filesep() + sz)) then bugmes();quit;end
24	cd(TMPDIR);
25end
26