Compare commits
No commits in common. "c8" and "c8s" have entirely different histories.
10
.gitignore
vendored
10
.gitignore
vendored
@ -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
|
||||
|
||||
@ -1 +0,0 @@
|
||||
9ee0a349a5f26a45542f990f31e7a20c705c789c SOURCES/ttfautohint-1.8.1.tar.gz
|
||||
6
gating.yaml
Normal file
6
gating.yaml
Normal 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
1
sources
Normal file
@ -0,0 +1 @@
|
||||
SHA512 (ttfautohint-1.8.1.tar.gz) = e6b8a579348ad4a8cde23a1f99b1ccd28d0c03553c69dc2e8de355c974439dd1a6c88828936dfb7faa1082ab5be3afde9f2fc16b45ea9264286086a1ae9f0e7b
|
||||
18
tests/smoke/runtest.sh
Normal file
18
tests/smoke/runtest.sh
Normal 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
20
tests/tests.yml
Normal 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
|
||||
Loading…
Reference in New Issue
Block a user