Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

testing: Move crypto to drivers and open_memstream to libc #2975

Merged
merged 1 commit into from
Jan 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
4 changes: 2 additions & 2 deletions testing/crypto/Make.defs → testing/drivers/crypto/Make.defs
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 All @@ -21,5 +21,5 @@
############################################################################

ifneq ($(CONFIG_TESTING_CRYPTO),)
CONFIGURED_APPS += $(APPDIR)/testing/crypto
CONFIGURED_APPS += $(APPDIR)/testing/drivers/crypto
endif
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.
4 changes: 2 additions & 2 deletions testing/setest/Make.defs → testing/drivers/setest/Make.defs
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 All @@ -21,5 +21,5 @@
############################################################################

ifneq ($(CONFIG_TESTING_SETEST),)
CONFIGURED_APPS += $(APPDIR)/testing/setest
CONFIGURED_APPS += $(APPDIR)/testing/drivers/setest
endif
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
Loading