Skip to content

Commit e4d9ec1

Browse files
committed
GnuTLS/OpenSSL - signature_algorithms
1 parent e8a74d2 commit e4d9ec1

File tree

3 files changed

+411
-0
lines changed

3 files changed

+411
-0
lines changed
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2+
#
3+
# Makefile of /CoreOS/gnutls/Interoperability/signature_algorithms-with-OpenSSL
4+
# Description: Test if the signature_algorithms extension works with OpenSSL
5+
# Author: Frantisek Sumsal <[email protected]>
6+
#
7+
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8+
#
9+
# Copyright (c) 2017 Red Hat, Inc.
10+
#
11+
# This program is free software: you can redistribute it and/or
12+
# modify it under the terms of the GNU General Public License as
13+
# published by the Free Software Foundation, either version 2 of
14+
# the License, or (at your option) any later version.
15+
#
16+
# This program is distributed in the hope that it will be
17+
# useful, but WITHOUT ANY WARRANTY; without even the implied
18+
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
19+
# PURPOSE. See the GNU General Public License for more details.
20+
#
21+
# You should have received a copy of the GNU General Public License
22+
# along with this program. If not, see http://www.gnu.org/licenses/.
23+
#
24+
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25+
26+
export TEST=/CoreOS/gnutls/Interoperability/signature_algorithms-with-OpenSSL
27+
export TESTVERSION=1.0
28+
29+
BUILT_FILES=
30+
31+
FILES=$(METADATA) runtest.sh Makefile PURPOSE
32+
33+
.PHONY: all install download clean
34+
35+
run: $(FILES) build
36+
./runtest.sh
37+
38+
build: $(BUILT_FILES)
39+
test -x runtest.sh || chmod a+x runtest.sh
40+
41+
clean:
42+
rm -f *~ $(BUILT_FILES)
43+
44+
45+
46+
$(METADATA): Makefile
47+
@echo "Owner: Frantisek Sumsal <[email protected]>" > $(METADATA)
48+
@echo "Name: $(TEST)" >> $(METADATA)
49+
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
50+
@echo "Path: $(TEST_DIR)" >> $(METADATA)
51+
@echo "Description: Test if the signature_algorithms extension works with OpenSSL" >> $(METADATA)
52+
@echo "Type: Interoperability" >> $(METADATA)
53+
@echo "TestTime: 50m" >> $(METADATA)
54+
@echo "RunFor: gnutls" >> $(METADATA)
55+
@echo "Requires: gnutls gnutls-utils openssl" >> $(METADATA)
56+
@echo "RhtsRequires: library(openssl/certgen)" >> $(METADATA)
57+
@echo "Priority: Normal" >> $(METADATA)
58+
@echo "License: GPLv2+" >> $(METADATA)
59+
@echo "Confidential: no" >> $(METADATA)
60+
@echo "Destructive: no" >> $(METADATA)
61+
@echo "Releases: -RHEL4 -RHELClient5 -RHELServer5 -RHEL6" >> $(METADATA)
62+
63+
rhts-lint $(METADATA)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
PURPOSE of /CoreOS/gnutls/Interoperability/signature_algorithms-with-OpenSSL
2+
Description: Test if the signature_algorithms extension works with OpenSSL
3+
Author: Frantisek Sumsal <[email protected]>

0 commit comments

Comments
 (0)