1 // =============================================================================
2 // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 // Copyright (C) 2012 - DIGITEO - Allan CORNET
5 // This file is distributed under the same license as the Scilab package.
6 // =============================================================================
7 // <-- TEST WITH ATOMS -->
8 // <-- JVM NOT MANDATORY -->
10 // <-- Non-regression test for bug 10933 -->
12 // <-- Bugzilla URL -->
13 // http://bugzilla.scilab.org/show_bug.cgi?id=10933
15 // <-- Short Description -->
16 // atomsGetConfig did not check value of input argument
17 msgerr = msprintf(gettext("%s: Wrong value for input argument #%d.\n"),"atomsGetConfig", 1);
18 assert_checkerror("atomsGetConfig(''blabla'')", msgerr);
19 atomsGetConfig("useProxy");
20 atomsGetConfig("proxyHost");
21 atomsGetConfig("proxyPort");
22 atomsGetConfig("proxyUser");
23 atomsGetConfig("proxyPassword");
24 atomsGetConfig("offline");
25 atomsGetConfig("autoload");
26 atomsGetConfig("autoloadAddAfterInstall");
27 atomsGetConfig("verbose");
28 atomsGetConfig("downloadTool");
29 atomsGetConfig("downloadTimeout");