From 0b861eafd5bf5d6cdb2c602485310e3733052a10 Mon Sep 17 00:00:00 2001 From: patacongo Date: Wed, 31 Oct 2012 22:06:31 +0000 Subject: Convert configs/sim/ostest to use mconf tool; Add configs/sim/cxxtest git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5285 42af7a65-404d-4744-a932-0658087f49c3 --- apps/examples/Make.defs | 2 +- apps/examples/cxxtest/cxxtest_main.cxx | 219 +++++++++++++++++++++++++++++++++ apps/examples/cxxtest/cxxtext_main.cxx | 219 --------------------------------- 3 files changed, 220 insertions(+), 220 deletions(-) create mode 100644 apps/examples/cxxtest/cxxtest_main.cxx delete mode 100644 apps/examples/cxxtest/cxxtext_main.cxx (limited to 'apps/examples') diff --git a/apps/examples/Make.defs b/apps/examples/Make.defs index 52949ae91..8d36aaa40 100644 --- a/apps/examples/Make.defs +++ b/apps/examples/Make.defs @@ -54,7 +54,7 @@ ifeq ($(CONFIG_EXAMPLES_COMPOSITE),y) CONFIGURED_APPS += examples/composite endif -ifeq ($(CONFIG_EXAMPLES_CXXTEST,y) +ifeq ($(CONFIG_EXAMPLES_CXXTEST),y) CONFIGURED_APPS += examples/cxxtest endif diff --git a/apps/examples/cxxtest/cxxtest_main.cxx b/apps/examples/cxxtest/cxxtest_main.cxx new file mode 100644 index 000000000..c0d4bfbd1 --- /dev/null +++ b/apps/examples/cxxtest/cxxtest_main.cxx @@ -0,0 +1,219 @@ +//*************************************************************************** +// examples/cxxtest/main.cxx +// +// Copyright (C) 2012 Gregory Nutt. All rights reserved. +// Author: Qiang Yu, http://rgmp.sourceforge.net/wiki/index.php/Main_Page +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions +// are met: +// +// 1. Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// 2. Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in +// the documentation and/or other materials provided with the +// distribution. +// 3. Neither the name NuttX nor the names of its contributors may be +// used to endorse or promote products derived from this software +// without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +// COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS +// OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED +// AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. +// +//*************************************************************************** + +//*************************************************************************** +// Included Files +//*************************************************************************** + +#include +#include +#include + +#include +#include +#include +#include +#include + +using namespace std; + +//*************************************************************************** +// Definitions +//*************************************************************************** + +//*************************************************************************** +// Private Classes +//*************************************************************************** + +class Base +{ +public: + virtual void printBase(void) {}; +}; + +class Extend : public Base +{ +public: + void printExtend(void) + { + cout << "extend" << endl; + } +}; + +//*************************************************************************** +// Private Data +//*************************************************************************** + +//*************************************************************************** +// Public Functions +//*************************************************************************** + +//*************************************************************************** +// Name: test_iostream +//***************************************************************************/ + +static void test_iostream(void) +{ + cout << "test iostream===========================" << endl; + cout << "Hello, this is only a test" << endl; + cout << "Print an int: " << 190 << endl; + cout << "Print a char: " << 'd' << endl; + +#if 0 + int a; + string s; + + cout << "Please type in an int:" << endl; + cin >> a; + cout << "You type in: " << a << endl; + cout << "Please type in a string:" << endl; + cin >> s; + cout << "You type in: " << s << endl; +#endif +} + +//*************************************************************************** +// Name: test_stl +//***************************************************************************/ + +static void test_stl(void) +{ + cout << "test vector=============================" << endl; + + vector v1; + assert(v1.empty()); + + v1.push_back(1); + assert(!v1.empty()); + + v1.push_back(2); + v1.push_back(3); + v1.push_back(4); + assert(v1.size() == 4); + + v1.pop_back(); + assert(v1.size() == 3); + + cout << "v1=" << v1[0] << ' ' << v1[1] << ' ' << v1[2] << endl; + assert(v1[2] == 3); + + vector v2 = v1; + assert(v2 == v1); + + string words[4] = {"Hello", "World", "Good", "Luck"}; + vector v3(words, words + 4); + vector::iterator it; + for (it = v3.begin(); it != v3.end(); it++) + { + cout << *it << ' '; + } + + cout << endl; + assert(v3[1] == "World"); + + cout << "test map================================" << endl; + + map m1; + m1[12] = "Hello"; + m1[24] = "World"; + assert(m1.size() == 2); + assert(m1[24] == "World"); +} + +//*************************************************************************** +// Name: test_rtti +//***************************************************************************/ + +static void test_rtti(void) +{ + cout << "test rtti===============================" << endl; + Base *a = new Base(); + Base *b = new Extend(); + assert(a); + assert(b); + + Extend *t = dynamic_cast(a); + assert(t == NULL); + + t = dynamic_cast(b); + assert(t); + t->printExtend(); + + delete a; + delete b; +} + +//*************************************************************************** +// Name: test_exception +//***************************************************************************/ + +static void test_exception(void) +{ + cout << "test exception==========================" << endl; + try + { + throw runtime_error("runtime error"); + } + + catch (runtime_error &e) + { + cout << "Catch exception: " << e.what() << endl; + } +} + +//*************************************************************************** +// Public Functions +//*************************************************************************** + +//*************************************************************************** +// Name: cxxtest_main +//***************************************************************************/ + +int cxxtest_main(int argc, char *argv[]) +{ + // If C++ initialization for static constructors is supported, then do + // that first + +#ifdef CONFIG_HAVE_CXXINITIALIZE + up_cxxinitialize(); +#endif + + test_iostream(); + test_stl(); + test_rtti(); + test_exception(); + + return 0; +} diff --git a/apps/examples/cxxtest/cxxtext_main.cxx b/apps/examples/cxxtest/cxxtext_main.cxx deleted file mode 100644 index 0d181d0e4..000000000 --- a/apps/examples/cxxtest/cxxtext_main.cxx +++ /dev/null @@ -1,219 +0,0 @@ -//*************************************************************************** -// examples/cxxtest/main.cxx -// -// Copyright (C) 2012 Gregory Nutt. All rights reserved. -// Author: Qiang Yu, http://rgmp.sourceforge.net/wiki/index.php/Main_Page -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions -// are met: -// -// 1. Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// 2. Redistributions in binary form must reproduce the above copyright -// notice, this list of conditions and the following disclaimer in -// the documentation and/or other materials provided with the -// distribution. -// 3. Neither the name NuttX nor the names of its contributors may be -// used to endorse or promote products derived from this software -// without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -// COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS -// OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED -// AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -// POSSIBILITY OF SUCH DAMAGE. -// -//*************************************************************************** - -//*************************************************************************** -// Included Files -//*************************************************************************** - -#include -#include -#include - -#include -#include -#include -#include -#include - -using namespace std; - -//*************************************************************************** -// Definitions -//*************************************************************************** - -//*************************************************************************** -// Private Classes -//*************************************************************************** - -class Base -{ -public: - virtual void printBase(void) {}; -}; - -class Extend : public Base -{ -public: - void printExtend(void) - { - cout << "extend" << endl; - } -}; - -//*************************************************************************** -// Private Data -//*************************************************************************** - -//*************************************************************************** -// Public Functions -//*************************************************************************** - -//*************************************************************************** -// Name: test_iostream -//***************************************************************************/ - -static void test_iostream(void) -{ - int a; - string s; - - cout << "test iostream===========================" << endl; - cout << "Hello, this is only a test" << endl; - cout << "Print an int: " << 190 << endl; - cout << "Print a char: " << 'd' << endl; - -/* - cout << "Please type in an int:" << endl; - cin >> a; - cout << "You type in: " << a << endl; - cout << "Please type in a string:" << endl; - cin >> s; - cout << "You type in: " << s << endl; -*/ -} - -//*************************************************************************** -// Name: test_stl -//***************************************************************************/ - -static void test_stl(void) -{ - cout << "test vector=============================" << endl; - - vector v1; - assert(v1.empty()); - - v1.push_back(1); - assert(!v1.empty()); - - v1.push_back(2); - v1.push_back(3); - v1.push_back(4); - assert(v1.size() == 4); - - v1.pop_back(); - assert(v1.size() == 3); - - cout << "v1=" << v1[0] << ' ' << v1[1] << ' ' << v1[2] << endl; - assert(v1[2] == 3); - - vector v2 = v1; - assert(v2 == v1); - - string words[4] = {"Hello", "World", "Good", "Luck"}; - vector v3(words, words + 4); - vector::iterator it; - for (it = v3.begin(); it != v3.end(); it++) - { - cout << *it << ' '; - } - - cout << endl; - assert(v3[1] == "World"); - - cout << "test map================================" << endl; - - map m1; - m1[12] = "Hello"; - m1[24] = "World"; - assert(m1.size() == 2); - assert(m1[24] == "World"); -} - -//*************************************************************************** -// Name: test_rtti -//***************************************************************************/ - -static void test_rtti(void) -{ - cout << "test rtti===============================" << endl; - Base *a = new Base(); - Base *b = new Extend(); - assert(a); - assert(b); - - Extend *t = dynamic_cast(a); - assert(t == NULL); - - t = dynamic_cast(b); - assert(t); - t->printExtend(); - - delete a; - delete b; -} - -//*************************************************************************** -// Name: test_exception -//***************************************************************************/ - -static void test_exception(void) -{ - cout << "test exception==========================" << endl; - try - { - throw runtime_error("runtime error"); - } - - catch (runtime_error &e) - { - cout << "Catch exception: " << e.what() << endl; - } -} - -//*************************************************************************** -// Public Functions -//*************************************************************************** - -//*************************************************************************** -// Name: cxxtest_main -//***************************************************************************/ - -int cxxtest_main(int argc, char *argv[]) -{ - // If C++ initialization for static constructors is supported, then do - // that first - -#ifdef CONFIG_HAVE_CXXINITIALIZE - up_cxxinitialize(); -#endif - - test_iostream(); - test_stl(); - test_rtti(); - test_exception(); - - return 0; -} -- cgit v1.2.3