summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/examples/cxxtest/cxxtest_main.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/examples/cxxtest/cxxtest_main.cxx b/apps/examples/cxxtest/cxxtest_main.cxx
index c0d4bfbd1..70d54109f 100644
--- a/apps/examples/cxxtest/cxxtest_main.cxx
+++ b/apps/examples/cxxtest/cxxtest_main.cxx
@@ -179,6 +179,7 @@ static void test_rtti(void)
// Name: test_exception
//***************************************************************************/
+#ifdef CONFIG_UCLIBCXX_EXCEPTION
static void test_exception(void)
{
cout << "test exception==========================" << endl;
@@ -192,6 +193,7 @@ static void test_exception(void)
cout << "Catch exception: " << e.what() << endl;
}
}
+#endif
//***************************************************************************
// Public Functions
@@ -213,7 +215,9 @@ int cxxtest_main(int argc, char *argv[])
test_iostream();
test_stl();
test_rtti();
+#ifdef CONFIG_UCLIBCXX_EXCEPTION
test_exception();
+#endif
return 0;
}