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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
/******************************************************************************
* Copyright (c) 2000-2021 Ericsson Telecom AB
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
*
* Contributors:
* Balasko, Jeno
* Dimitrov, Peter
* Szabados, Kristof
*
******************************************************************************/
#include "test_macro.inc"
module TpreCompilerFlags {
type port TEST_PT message
{
inout charstring;
} with { extension "internal" }
type component MTC_CT
{
port TEST_PT TP;
};
function f_test() runs on MTC_CT
{
#define DEBUG
#include "test_include.inc"
#ifdef DEBUG
log("DEBUG is ON.");
#else
log("DEBUG is OFF.");
#endif
#undef DEBUG
#include "test_include.inc"
#ifdef DEBUG
log("DEBUG is ON.");
#else
log("DEBUG is OFF.");
#endif
setverdict(pass);
}
function f_pi() runs on MTC_CT
{
#define _ 1.0
log("PI=",4.0* -(
-_-_-_-_
-_-_-_-_-_-_-_-_-_
-_-_-_-_-_-_-_-_-_-_-_-_
-_-_-_-_-_-_-_-_-_-_-_-_-_-_
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
-_-_-_-_-_-_-_-_-_-_-_-_-_-_
-_-_-_-_-_-_-_-_-_-_-_-_
-_-_-_-_-_-_-_-_
-_-_-_-_
)/ (-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_)
/ (-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_));
setverdict(pass);
}
function f_misc() runs on MTC_CT
{
#define MLC aaa bbb \
ccc ddd /* this is a multi
line comment */ \
eee
#define ADD(a,b) a+b
#define FIVE 5
#define TEN 10
log(ADD(FIVE,TEN));
setverdict(pass);
}
function f_sender() runs on MTC_CT
{
SEND
}
function f_receiver() runs on MTC_CT
{
var charstring vl_string;
timer Tl_t := 1.0;
Tl_t.start;
alt {
RECEIVE
TIMEOUT
}
}
testcase tc_test() runs on MTC_CT
{
f_test();
f_pi();
f_misc();
}
testcase tc_messaging() runs on MTC_CT
{
connect(mtc:TP, mtc:TP);
f_sender();
f_receiver();
}
control {
execute(tc_test());
execute(tc_messaging());
}
}
|