diff --git a/examples/Make.defs b/examples/Make.defs index 52949ae91..8d36aaa40 100644 --- a/examples/Make.defs +++ b/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/examples/cxxtest/cxxtext_main.cxx b/examples/cxxtest/cxxtest_main.cxx similarity index 99% rename from examples/cxxtest/cxxtext_main.cxx rename to examples/cxxtest/cxxtest_main.cxx index 0d181d0e4..c0d4bfbd1 100644 --- a/examples/cxxtest/cxxtext_main.cxx +++ b/examples/cxxtest/cxxtest_main.cxx @@ -86,22 +86,22 @@ public: 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 << "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 } //***************************************************************************