Skip to content

Commit fac8942

Browse files
testing: Move crypto/setest to drivers and open_memstream to libc
follow the dissusion from: apache#2931 Signed-off-by: Xiang Xiao <[email protected]>
1 parent d3a1f80 commit fac8942

25 files changed

+24
-24
lines changed

testing/crypto/3descbc.c renamed to testing/drivers/crypto/3descbc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/3descbc.c
2+
* apps/testing/drivers/crypto/3descbc.c
33
*
44
* SPDX-License-Identifier: BSD-2-Clause
55
* SPDX-FileCopyrightText: 2002 Markus Friedl. All rights reserved.

testing/crypto/CMakeLists.txt renamed to testing/drivers/crypto/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ##############################################################################
2-
# apps/testing/crypto/CMakeLists.txt
2+
# apps/testing/drivers/crypto/CMakeLists.txt
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
#
File renamed without changes.

testing/crypto/Make.defs renamed to testing/drivers/crypto/Make.defs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
############################################################################
2-
# apps/testing/crypto/Make.defs
2+
# apps/testing/drivers/crypto/Make.defs
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
#
@@ -21,5 +21,5 @@
2121
############################################################################
2222

2323
ifneq ($(CONFIG_TESTING_CRYPTO),)
24-
CONFIGURED_APPS += $(APPDIR)/testing/crypto
24+
CONFIGURED_APPS += $(APPDIR)/testing/drivers/crypto
2525
endif

testing/crypto/Makefile renamed to testing/drivers/crypto/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
############################################################################
2-
# apps/testing/crypto/Makefile
2+
# apps/testing/drivers/crypto/Makefile
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
#

testing/crypto/aescbc.c renamed to testing/drivers/crypto/aescbc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/aescbc.c
2+
* apps/testing/drivers/crypto/aescbc.c
33
*
44
* SPDX-License-Identifier: ISC
55
* SPDX-FileCopyrightText: 2005 Markus Friedl. All rights reserved.

testing/crypto/aescmac.c renamed to testing/drivers/crypto/aescmac.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/aescmac.c
2+
* apps/testing/drivers/crypto/aescmac.c
33
*
44
* SPDX-License-Identifier: ISC
55
*

testing/crypto/aesctr.c renamed to testing/drivers/crypto/aesctr.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/aesctr.c
2+
* apps/testing/drivers/crypto/aesctr.c
33
*
44
* SPDX-License-Identifier: ISC
55
* SPDX-FileCopyrightText: 2005 Markus Friedl <[email protected]>

testing/crypto/aesxts.c renamed to testing/drivers/crypto/aesxts.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/aesxts.c
2+
* apps/testing/drivers/crypto/aesxts.c
33
*
44
* SPDX-License-Identifier: BSD-2-Clause
55
* SPDX-FileCopyrightText: 2002 Markus Friedl. All rights reserved.

testing/crypto/crc32.c renamed to testing/drivers/crypto/crc32.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/crc32.c
2+
* apps/testing/drivers/crypto/crc32.c
33
*
44
* SPDX-License-Identifier: ISC
55
*

testing/crypto/dhm.c renamed to testing/drivers/crypto/dhm.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/dhm.c
2+
* apps/testing/drivers/crypto/dhm.c
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*

testing/crypto/ecdsa.c renamed to testing/drivers/crypto/ecdsa.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/ecdsa.c
2+
* apps/testing/drivers/crypto/ecdsa.c
33
*
44
* SPDX-License-Identifier: ISC
55
*

testing/crypto/hash.c renamed to testing/drivers/crypto/hash.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/hash.c
2+
* apps/testing/drivers/crypto/hash.c
33
*
44
* SPDX-License-Identifier: ISC
55
*

testing/crypto/hmac.c renamed to testing/drivers/crypto/hmac.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/hmac.c
2+
* apps/testing/drivers/crypto/hmac.c
33
*
44
* SPDX-License-Identifier: ISC
55
* SPDX-FileCopyrightText: 2008 Damien Bergamini <[email protected]>

testing/crypto/rsa.c renamed to testing/drivers/crypto/rsa.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/crypto/rsa.c
2+
* apps/testing/drivers/crypto/rsa.c
33
*
44
* SPDX-License-Identifier: ISC
55
*

testing/setest/CMakeLists.txt renamed to testing/drivers/setest/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ##############################################################################
2-
# apps/testing/setest/CMakeLists.txt
2+
# apps/testing/drivers/setest/CMakeLists.txt
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
#
File renamed without changes.

testing/setest/Make.defs renamed to testing/drivers/setest/Make.defs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
############################################################################
2-
# apps/testing/setest/Make.defs
2+
# apps/testing/drivers/setest/Make.defs
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
#

testing/setest/Makefile renamed to testing/drivers/setest/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
############################################################################
2-
# apps/testing/setest/Makefile
2+
# apps/testing/drivers/setest/Makefile
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
#

testing/setest/setest.c renamed to testing/drivers/setest/setest.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/setest/setest.c
2+
* apps/testing/drivers/setest/setest.c
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*

testing/open_memstream/CMakeLists.txt renamed to testing/libc/open_memstream/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ##############################################################################
2-
# apps/testing/open_memstream/CMakeLists.txt
2+
# apps/testing/libc/open_memstream/CMakeLists.txt
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
#
File renamed without changes.

testing/open_memstream/Make.defs renamed to testing/libc/open_memstream/Make.defs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
############################################################################
2-
# apps/testing/open_memstream/Make.defs
2+
# apps/testing/libc/open_memstream/Make.defs
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
#
@@ -21,5 +21,5 @@
2121
############################################################################
2222

2323
ifneq ($(CONFIG_TESTING_OPEN_MEMSTREAM),)
24-
CONFIGURED_APPS += $(APPDIR)/testing/open_memstream
24+
CONFIGURED_APPS += $(APPDIR)/testing/libc/open_memstream
2525
endif

testing/open_memstream/Makefile renamed to testing/libc/open_memstream/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
############################################################################
2-
# apps/testing/open_memstream/Makefile
2+
# apps/testing/libc/open_memstream/Makefile
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
#

testing/open_memstream/open_memstream.c renamed to testing/libc/open_memstream/open_memstream.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************
2-
* apps/testing/open_memstream/open_memstream.c
2+
* apps/testing/libc/open_memstream/open_memstream.c
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*

0 commit comments

Comments
 (0)