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 -->
10 // <-- WINDOWS ONLY -->
12 // <-- Non-regression test for bug 4853 -->
14 // <-- Bugzilla URL -->
15 // http://bugzilla.scilab.org/show_bug.cgi?id=4853
16 // <-- Short Description -->
17 // dll generated by scilab have a wrong dependency on fortran runtime libs
19 // test only for windows
21 exec SCI/modules/dynamic_link/tests/unit_tests/addinter.tst;
22 r = dllinfo(TMPDIR + '/addinter/libintertest.dll','imports');
23 if (r(1)(1) == 'libmmd.dll') | (r(2)(1) == 'libmmd.dll') then pause,end
25 // =============================================================================