1 // =============================================================================
2 // Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 // Copyright (C) 2008 - DIGITEO - Allan CORNET
5 // This file is distributed under the same license as the Scilab package.
6 // =============================================================================
8 // <-- ENGLISH IMPOSED -->
9 // <-- CLI SHELL MODE -->
11 // <-- Non-regression test for bug 4853 -->
13 // <-- Bugzilla URL -->
14 // http://bugzilla.scilab.org/show_bug.cgi?id=4853
15 // <-- Short Description -->
16 // dll generated by scilab have a wrong dependency on fortran runtime libs
18 // test only for windows
20 if getos() == 'Windows' then
22 exec SCI/modules/dynamic_link/tests/unit_tests/addinter.tst;
23 r = dllinfo(TMPDIR + '/addinter/libintertest.dll','imports');
24 if (r(1)(1) == 'libmmd.dll') | (r(2)(1) == 'libmmd.dll') then pause,end
27 // =============================================================================