testing: Move crypto/setest to drivers and open_memstream to libc

follow the dissusion from:
https://github.com/apache/nuttx-apps/pull/2931

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao
2025-01-25 20:46:26 +08:00
committed by CeDeROM
parent 0406e6734a
commit b7f05e89ba
25 changed files with 25 additions and 25 deletions

View File

@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/3descbc.c
* apps/testing/drivers/crypto/3descbc.c
*
* SPDX-License-Identifier: BSD-2-Clause
* SPDX-FileCopyrightText: 2002 Markus Friedl. All rights reserved.

View File

@@ -1,5 +1,5 @@
# ##############################################################################
# apps/testing/crypto/CMakeLists.txt
# apps/testing/drivers/crypto/CMakeLists.txt
#
# SPDX-License-Identifier: Apache-2.0
#

View File

@@ -1,5 +1,5 @@
############################################################################
# apps/testing/crypto/Make.defs
# apps/testing/drivers/crypto/Make.defs
#
# SPDX-License-Identifier: Apache-2.0
#
@@ -21,5 +21,5 @@
############################################################################
ifneq ($(CONFIG_TESTING_CRYPTO),)
CONFIGURED_APPS += $(APPDIR)/testing/crypto
CONFIGURED_APPS += $(APPDIR)/testing/drivers/crypto
endif

View File

@@ -1,5 +1,5 @@
############################################################################
# apps/testing/crypto/Makefile
# apps/testing/drivers/crypto/Makefile
#
# SPDX-License-Identifier: Apache-2.0
#

View File

@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/aescbc.c
* apps/testing/drivers/crypto/aescbc.c
*
* SPDX-License-Identifier: ISC
* SPDX-FileCopyrightText: 2005 Markus Friedl. All rights reserved.

View File

@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/aescmac.c
* apps/testing/drivers/crypto/aescmac.c
*
* SPDX-License-Identifier: ISC
*

View File

@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/aesctr.c
* apps/testing/drivers/crypto/aesctr.c
*
* SPDX-License-Identifier: ISC
* SPDX-FileCopyrightText: 2005 Markus Friedl <markus@openbsd.org>

View File

@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/aesxts.c
* apps/testing/drivers/crypto/aesxts.c
*
* SPDX-License-Identifier: BSD-2-Clause
* SPDX-FileCopyrightText: 2002 Markus Friedl. All rights reserved.

View File

@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/crc32.c
* apps/testing/drivers/crypto/crc32.c
*
* SPDX-License-Identifier: ISC
*

View File

@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/dhm.c
* apps/testing/drivers/crypto/dhm.c
*
* SPDX-License-Identifier: Apache-2.0
*

View File

@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/ecdsa.c
* apps/testing/drivers/crypto/ecdsa.c
*
* SPDX-License-Identifier: ISC
*

View File

@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/hash.c
* apps/testing/drivers/crypto/hash.c
*
* SPDX-License-Identifier: ISC
*

View File

@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/hmac.c
* apps/testing/drivers/crypto/hmac.c
*
* SPDX-License-Identifier: ISC
* SPDX-FileCopyrightText: 2008 Damien Bergamini <damien.bergamini@free.fr>

View File

@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/rsa.c
* apps/testing/drivers/crypto/rsa.c
*
* SPDX-License-Identifier: ISC
*

View File

@@ -1,5 +1,5 @@
# ##############################################################################
# apps/testing/setest/CMakeLists.txt
# apps/testing/drivers/setest/CMakeLists.txt
#
# SPDX-License-Identifier: Apache-2.0
#

View File

@@ -1,5 +1,5 @@
############################################################################
# apps/testing/setest/Make.defs
# apps/testing/drivers/setest/Make.defs
#
# SPDX-License-Identifier: Apache-2.0
#
@@ -21,5 +21,5 @@
############################################################################
ifneq ($(CONFIG_TESTING_SETEST),)
CONFIGURED_APPS += $(APPDIR)/testing/setest
CONFIGURED_APPS += $(APPDIR)/testing/drivers/setest
endif

View File

@@ -1,5 +1,5 @@
############################################################################
# apps/testing/setest/Makefile
# apps/testing/drivers/setest/Makefile
#
# SPDX-License-Identifier: Apache-2.0
#

View File

@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/setest/setest.c
* apps/testing/drivers/setest/setest.c
*
* SPDX-License-Identifier: Apache-2.0
*

View File

@@ -1,5 +1,5 @@
# ##############################################################################
# apps/testing/open_memstream/CMakeLists.txt
# apps/testing/libc/open_memstream/CMakeLists.txt
#
# SPDX-License-Identifier: Apache-2.0
#

View File

@@ -1,5 +1,5 @@
############################################################################
# apps/testing/open_memstream/Make.defs
# apps/testing/libc/open_memstream/Make.defs
#
# SPDX-License-Identifier: Apache-2.0
#
@@ -21,5 +21,5 @@
############################################################################
ifneq ($(CONFIG_TESTING_OPEN_MEMSTREAM),)
CONFIGURED_APPS += $(APPDIR)/testing/open_memstream
CONFIGURED_APPS += $(APPDIR)/testing/libc/open_memstream
endif

View File

@@ -1,5 +1,5 @@
############################################################################
# apps/testing/open_memstream/Makefile
# apps/testing/libc/open_memstream/Makefile
#
# SPDX-License-Identifier: Apache-2.0
#

View File

@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/open_memstream/open_memstream.c
* apps/testing/libc/open_memstream/open_memstream.c
*
* SPDX-License-Identifier: Apache-2.0
*