Fix typo error in testing/cxxtest.

This commit is contained in:
Xiang Xiao 2019-10-04 09:05:58 -06:00 committed by Gregory Nutt
parent e9cd27e8c3
commit c51b923b79
6 changed files with 11 additions and 11 deletions

View File

@ -27,8 +27,8 @@ testing/cxxtest
Example Configuration Options
-----------------------------
CONFIG_TESTINGCXXTEST=y - Eanbles the example
CONFIG_TESTINGCXXTEST_CXXINITIALIZE=y - By default, if CONFIG_HAVE_CXX
CONFIG_TESTING_CXXTEST=y - Eanbles the example
CONFIG_TESTING_CXXTEST_CXXINITIALIZE=y - By default, if CONFIG_HAVE_CXX
and CONFIG_HAVE_CXXINITIALIZE are defined, then this example
will call the NuttX function to initialize static C++ constructors.
This option may be disabled, however, if that static initialization

View File

@ -3,16 +3,16 @@
# see the file kconfig-language.txt in the NuttX tools repository.
#
config TESTINGCXXTEST
config TESTING_CXXTEST
tristate "C++ test program"
default n
depends on HAVE_CXX
---help---
Enable the C++ test program
if TESTINGCXXTEST
if TESTING_CXXTEST
config TESTINGCXXTEST_CXXINITIALIZE
config TESTING_CXXTEST_CXXINITIALIZE
bool "C++ Initialization"
default y
depends on HAVE_CXX && HAVE_CXXINITIALIZE

View File

@ -34,6 +34,6 @@
#
############################################################################
ifneq ($(CONFIG_TESTINGCXXTEST),)
ifneq ($(CONFIG_TESTING_CXXTEST),)
CONFIGURED_APPS += testing
endif

View File

@ -48,6 +48,6 @@ APPNAME = cxxtest
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 4096
MODULE = CONFIG_TESTINGCXXTEST
MODULE = CONFIG_TESTING_CXXTEST
include $(APPDIR)/Application.mk

View File

@ -15,8 +15,8 @@ README
Example Configuration Options
-----------------------------
CONFIG_TESTINGCXXTEST=y - Eanbles the example
CONFIG_TESTINGCXXTEST_CXXINITIALIZE=y - By default, if CONFIG_HAVE_CXX
CONFIG_TESTING_CXXTEST=y - Eanbles the example
CONFIG_TESTING_CXXTEST_CXXINITIALIZE=y - By default, if CONFIG_HAVE_CXX
and CONFIG_HAVE_CXXINITIALIZE are defined, then this example
will call the NuttX function to initialize static C++ constructors.
This option may be disabled, however, if that static initialization

View File

@ -61,7 +61,7 @@ using namespace std;
#if !defined(CONFIG_HAVE_CXX) || !defined(CONFIG_HAVE_CXXINITIALIZE)
# warning Support for static initializers is NOT enabled
# undef CONFIG_TESTINGCXXTEST_CXXINITIALIZE
# undef CONFIG_TESTING_CXXTEST_CXXINITIALIZE
#endif
//***************************************************************************
@ -250,7 +250,7 @@ extern "C"
// If C++ initialization for static constructors is supported, then do
// that first
#ifdef CONFIG_TESTINGCXXTEST_CXXINITIALIZE
#ifdef CONFIG_TESTING_CXXTEST_CXXINITIALIZE
up_cxxinitialize();
#endif