Compare commits

...

No commits in common. "c8" and "c8s" have entirely different histories.
c8 ... c8s

7 changed files with 54 additions and 2 deletions

10
.gitignore vendored
View File

@ -1 +1,9 @@
SOURCES/ttfautohint-1.8.1.tar.gz
/ttfautohint-0.97.tar.gz
/ttfautohint-1.00.tar.gz
/ttfautohint-1.1.tar.gz
/ttfautohint-1.2.tar.gz
/ttfautohint-1.3.tar.gz
/ttfautohint-1.5.tar.gz
/ttfautohint-1.6.tar.gz
/ttfautohint-1.7.tar.gz
/ttfautohint-1.8.1.tar.gz

View File

@ -1 +0,0 @@
9ee0a349a5f26a45542f990f31e7a20c705c789c SOURCES/ttfautohint-1.8.1.tar.gz

6
gating.yaml Normal file
View File

@ -0,0 +1,6 @@
--- !Policy
product_versions:
- rhel-8
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (ttfautohint-1.8.1.tar.gz) = e6b8a579348ad4a8cde23a1f99b1ccd28d0c03553c69dc2e8de355c974439dd1a6c88828936dfb7faa1082ab5be3afde9f2fc16b45ea9264286086a1ae9f0e7b

18
tests/smoke/runtest.sh Normal file
View File

@ -0,0 +1,18 @@
#!/bin/bash
# If one of the commands below returns non-zero then exit immediately
set -e
cd ../source
wget https://releases.pagure.org/lohit/lohit-devanagari-2.95.4.tar.gz
tar -xzvf ./lohit-devanagari-2.95.4.tar.gz
cd lohit-devanagari-2.95.4
make ttf
old_size=`stat -c "%s" /usr/share/fonts/lohit-devanagari/Lohit-Devanagari.ttf`
new_size=`stat -c "%s" Lohit-Devanagari.ttf`
if [ $old_size -ne $new_size ]; then
echo "FAILED: ttfautohint generated different ttf file"
else
echo "PASSED: ttfautohint generated same ttf file"
fi

20
tests/tests.yml Normal file
View File

@ -0,0 +1,20 @@
---
- hosts: localhost
tags:
- classic
roles:
- role: standard-test-source
- hosts: localhost
tags:
- classic
roles:
- role: standard-test-basic
tests:
- smoke
required_packages:
- ttfautohint
- make
- fontforge
- lohit-devanagari-fonts
- wget