]> rtime.felk.cvut.cz Git - pes-rpp/rpp-simulink.git/blob - rpp/lib/apps/rpp-test-suite/src/fr.c
Added MOUT test to the test suite. Fixed MOUT library module to store value on simula...
[pes-rpp/rpp-simulink.git] / rpp / lib / apps / rpp-test-suite / src / fr.c
1 /* Copyright (C) 2013 Czech Technical University in Prague
2  *
3  * Authors:
4  *     - Carlos Jenkins <carlos@jenkins.co.cr>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  * File : fr.c
20  * Abstract:
21  *     RPP test suite - module for testing FR.
22  *
23  * References:
24  *     test.h
25  */
26
27
28 #include "rpp/rpp.h"
29 #include "test.h"
30
31
32 /**
33  * FR Test entry point.
34  */
35 void test_fr()
36 {
37     rpp_sci_printf((const char*)
38             "FR test is unimplemented. Press any key to continue...\r\n"
39         );
40     wait_for_quit();
41 }
42