1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
// ============================================================================
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2011 - DIGITEO - Clément DAVID
//
// This file is distributed under the same license as the Scilab package.
// ============================================================================
//
// <-- XCOS TEST -->
// <-- ENGLISH IMPOSED -->
//
// <-- Short Description -->
// Check all the possible errors which should be reported on the diagram.
//-----------------------------------------------------------------------------
// at edition (sb port numbering)
//-----------------------------------------------------------------------------
// Check the report against wrong port numbering on super block
assert_checktrue(importXcosDiagram(SCI + "/modules/xcos/tests/unit_tests/error_sb_port_numbering.zcos"));
try
scicos_simulate(scs_m, "nw");
scicos_flat: Input ports are not numbered properly.
c_pass1: flat failed
catch
end
//-----------------------------------------------------------------------------
// on do_eval (context evaluation)
//-----------------------------------------------------------------------------
// Check the report against an invalid context value
assert_checktrue(importXcosDiagram(SCI + "/modules/xcos/tests/unit_tests/error_blocks_with_updated_context.zcos"));
scicos_simulate(scs_m, "nw");
!Evaluation problem: value not updated from context. !
! !
!Initial condition x0 should be inside the limits !
|