summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/examples/Make.defs2
-rw-r--r--apps/examples/cxxtest/cxxtest_main.cxx (renamed from apps/examples/cxxtest/cxxtext_main.cxx)12
2 files changed, 7 insertions, 7 deletions
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/cxxtext_main.cxx b/apps/examples/cxxtest/cxxtest_main.cxx
index 0d181d0e4..c0d4bfbd1 100644
--- a/apps/examples/cxxtest/cxxtext_main.cxx
+++ b/apps/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
}
//***************************************************************************