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

GnuTLS/OpenSSL - signature_algorithms #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
63 changes: 63 additions & 0 deletions gnutls/Interoperability/signature_algorithms-with-OpenSSL/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
# Makefile of /CoreOS/gnutls/Interoperability/signature_algorithms-with-OpenSSL
# Description: Test if the signature_algorithms extension works with OpenSSL
# Author: Frantisek Sumsal <[email protected]>
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
# Copyright (c) 2017 Red Hat, Inc.
#
# This program is free software: you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation, either version 2 of
# the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
# PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see http://www.gnu.org/licenses/.
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

export TEST=/CoreOS/gnutls/Interoperability/signature_algorithms-with-OpenSSL
export TESTVERSION=1.0

BUILT_FILES=

FILES=$(METADATA) runtest.sh Makefile PURPOSE

.PHONY: all install download clean

run: $(FILES) build
./runtest.sh

build: $(BUILT_FILES)
test -x runtest.sh || chmod a+x runtest.sh

clean:
rm -f *~ $(BUILT_FILES)



$(METADATA): Makefile
@echo "Owner: Frantisek Sumsal <[email protected]>" > $(METADATA)
@echo "Name: $(TEST)" >> $(METADATA)
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
@echo "Path: $(TEST_DIR)" >> $(METADATA)
@echo "Description: Test if the signature_algorithms extension works with OpenSSL" >> $(METADATA)
@echo "Type: Interoperability" >> $(METADATA)
@echo "TestTime: 50m" >> $(METADATA)
@echo "RunFor: gnutls" >> $(METADATA)
@echo "Requires: gnutls gnutls-utils openssl" >> $(METADATA)
@echo "RhtsRequires: library(openssl/certgen)" >> $(METADATA)
@echo "Priority: Normal" >> $(METADATA)
@echo "License: GPLv2+" >> $(METADATA)
@echo "Confidential: no" >> $(METADATA)
@echo "Destructive: no" >> $(METADATA)
@echo "Releases: -RHEL4 -RHELClient5 -RHELServer5 -RHEL6" >> $(METADATA)

rhts-lint $(METADATA)
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
PURPOSE of /CoreOS/gnutls/Interoperability/signature_algorithms-with-OpenSSL
Description: Test if the signature_algorithms extension works with OpenSSL
Author: Frantisek Sumsal <[email protected]>
Loading