Skip to content

Commit

Permalink
testing: Move crypto/setest to drivers and open_memstream to libc
Browse files Browse the repository at this point in the history
follow the dissusion from:
#2931

Signed-off-by: Xiang Xiao <[email protected]>
  • Loading branch information
xiaoxiang781216 committed Jan 25, 2025
1 parent d3a1f80 commit 271a900
Show file tree
Hide file tree
Showing 25 changed files with 23 additions and 23 deletions.
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ##############################################################################
# apps/testing/crypto/CMakeLists.txt
# apps/testing/drivers/crypto/CMakeLists.txt
#
# SPDX-License-Identifier: Apache-2.0
#
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
############################################################################
# apps/testing/crypto/Make.defs
# apps/testing/drivers/crypto/Make.defs
#
# SPDX-License-Identifier: Apache-2.0
#
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
############################################################################
# apps/testing/crypto/Makefile
# apps/testing/drivers/crypto/Makefile
#
# SPDX-License-Identifier: Apache-2.0
#
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/aescmac.c
* apps/testing/drivers/crypto/aescmac.c
*
* SPDX-License-Identifier: ISC
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/aesctr.c
* apps/testing/drivers/crypto/aesctr.c
*
* SPDX-License-Identifier: ISC
* SPDX-FileCopyrightText: 2005 Markus Friedl <[email protected]>
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion testing/crypto/crc32.c → testing/drivers/crypto/crc32.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/crc32.c
* apps/testing/drivers/crypto/crc32.c
*
* SPDX-License-Identifier: ISC
*
Expand Down
2 changes: 1 addition & 1 deletion testing/crypto/dhm.c → testing/drivers/crypto/dhm.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/dhm.c
* apps/testing/drivers/crypto/dhm.c
*
* SPDX-License-Identifier: Apache-2.0
*
Expand Down
2 changes: 1 addition & 1 deletion testing/crypto/ecdsa.c → testing/drivers/crypto/ecdsa.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/ecdsa.c
* apps/testing/drivers/crypto/ecdsa.c
*
* SPDX-License-Identifier: ISC
*
Expand Down
2 changes: 1 addition & 1 deletion testing/crypto/hash.c → testing/drivers/crypto/hash.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/hash.c
* apps/testing/drivers/crypto/hash.c
*
* SPDX-License-Identifier: ISC
*
Expand Down
2 changes: 1 addition & 1 deletion testing/crypto/hmac.c → testing/drivers/crypto/hmac.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/hmac.c
* apps/testing/drivers/crypto/hmac.c
*
* SPDX-License-Identifier: ISC
* SPDX-FileCopyrightText: 2008 Damien Bergamini <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion testing/crypto/rsa.c → testing/drivers/crypto/rsa.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/crypto/rsa.c
* apps/testing/drivers/crypto/rsa.c
*
* SPDX-License-Identifier: ISC
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ##############################################################################
# apps/testing/setest/CMakeLists.txt
# apps/testing/drivers/setest/CMakeLists.txt
#
# SPDX-License-Identifier: Apache-2.0
#
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
############################################################################
# apps/testing/setest/Make.defs
# apps/testing/drivers/setest/Make.defs
#
# SPDX-License-Identifier: Apache-2.0
#
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
############################################################################
# apps/testing/setest/Makefile
# apps/testing/drivers/setest/Makefile
#
# SPDX-License-Identifier: Apache-2.0
#
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/****************************************************************************
* apps/testing/setest/setest.c
* apps/testing/drivers/setest/setest.c
*
* SPDX-License-Identifier: Apache-2.0
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ##############################################################################
# apps/testing/open_memstream/CMakeLists.txt
# apps/testing/libc/open_memstream/CMakeLists.txt
#
# SPDX-License-Identifier: Apache-2.0
#
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
############################################################################
# apps/testing/open_memstream/Make.defs
# apps/testing/libc/open_memstream/Make.defs
#
# SPDX-License-Identifier: Apache-2.0
#
Expand All @@ -21,5 +21,5 @@
############################################################################

ifneq ($(CONFIG_TESTING_OPEN_MEMSTREAM),)
CONFIGURED_APPS += $(APPDIR)/testing/open_memstream
CONFIGURED_APPS += $(APPDIR)/testing/libc/open_memstream
endif
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
############################################################################
# apps/testing/open_memstream/Makefile
# apps/testing/libc/open_memstream/Makefile
#
# SPDX-License-Identifier: Apache-2.0
#
Expand Down
Original file line number Diff line number Diff line change
@@ -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
*
Expand Down

0 comments on commit 271a900

Please sign in to comment.