1
|
|
2
|
-- Copyright (C) 2001 Bill Billowitch.
|
3
|
|
4
|
-- Some of the work to develop this test suite was done with Air Force
|
5
|
-- support. The Air Force and Bill Billowitch assume no
|
6
|
-- responsibilities for this software.
|
7
|
|
8
|
-- This file is part of VESTs (Vhdl tESTs).
|
9
|
|
10
|
-- VESTs is free software; you can redistribute it and/or modify it
|
11
|
-- under the terms of the GNU General Public License as published by the
|
12
|
-- Free Software Foundation; either version 2 of the License, or (at
|
13
|
-- your option) any later version.
|
14
|
|
15
|
-- VESTs is distributed in the hope that it will be useful, but WITHOUT
|
16
|
-- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
17
|
-- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
18
|
-- for more details.
|
19
|
|
20
|
-- You should have received a copy of the GNU General Public License
|
21
|
-- along with VESTs; if not, write to the Free Software Foundation,
|
22
|
-- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
23
|
|
24
|
-- ---------------------------------------------------------------------
|
25
|
--
|
26
|
-- $Id: tc1642.vhd,v 1.2 2001-10-26 16:29:42 paw Exp $
|
27
|
-- $Revision: 1.2 $
|
28
|
--
|
29
|
-- ---------------------------------------------------------------------
|
30
|
|
31
|
package c08s12b00x00p06n01i01642pkg is
|
32
|
|
33
|
procedure procI;
|
34
|
function funcI return INTEGER;
|
35
|
|
36
|
end c08s12b00x00p06n01i01642pkg;
|
37
|
|
38
|
package body c08s12b00x00p06n01i01642pkg is
|
39
|
|
40
|
procedure procI is
|
41
|
begin
|
42
|
-- Return.
|
43
|
return;
|
44
|
|
45
|
-- Statement should NEVER be executed.
|
46
|
assert (FALSE)
|
47
|
report "Statement in procedure was executed in error.";
|
48
|
end procI;
|
49
|
|
50
|
function funcI return INTEGER is
|
51
|
begin
|
52
|
-- Return from the function.
|
53
|
return( 4 );
|
54
|
|
55
|
-- Statement should NEVER be executed.
|
56
|
assert (FALSE)
|
57
|
report "Statement in function was executed in error.";
|
58
|
end funcI;
|
59
|
|
60
|
end c08s12b00x00p06n01i01642pkg;
|
61
|
|
62
|
use work.c08s12b00x00p06n01i01642pkg.all;
|
63
|
ENTITY c08s12b00x00p06n01i01642ent IS
|
64
|
END c08s12b00x00p06n01i01642ent;
|
65
|
|
66
|
ARCHITECTURE c08s12b00x00p06n01i01642arch OF c08s12b00x00p06n01i01642ent IS
|
67
|
|
68
|
BEGIN
|
69
|
TESTING: PROCESS
|
70
|
BEGIN
|
71
|
-- Execute the procedure.
|
72
|
procI;
|
73
|
|
74
|
-- Execute the function.
|
75
|
assert NOT(funcI = 4)
|
76
|
report "***PASSED TEST: c08s12b00x00p06n01i01642"
|
77
|
severity NOTE;
|
78
|
assert (funcI = 4)
|
79
|
report "***FAILED TEST: c08s12b00x00p06n01i01642 - The execution of the return statement completes if the type of the expression is of teh result subtype."
|
80
|
severity ERROR;
|
81
|
wait;
|
82
|
END PROCESS TESTING;
|
83
|
|
84
|
END c08s12b00x00p06n01i01642arch;
|