Resolves:rhbz#1961998 - Add gating tests from rhel-8
This commit is contained in:
parent
58d06732fc
commit
81df5a36fa
@ -3,7 +3,7 @@
|
||||
|
||||
Name: m17n-lib
|
||||
Version: 1.8.0
|
||||
Release: 10%{?dist}
|
||||
Release: 11%{?dist}
|
||||
Summary: Multilingual text library
|
||||
|
||||
License: LGPLv2+
|
||||
@ -116,6 +116,9 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';'
|
||||
%{_libdir}/libm17n-gui.so.*
|
||||
|
||||
%changelog
|
||||
* Tue May 25 2021 Parag Nemade <pnemade AT redhat DOT com> - 1.8.0-11
|
||||
- Resolves:rhbz#1961998 - Add gating tests from rhel-8
|
||||
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.8.0-10
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
|
15
tests/smoke/hello.txt
Normal file
15
tests/smoke/hello.txt
Normal file
@ -0,0 +1,15 @@
|
||||
hallo
|
||||
እው ሰላም ነው
|
||||
مرحبا
|
||||
হ্যালো
|
||||
你好
|
||||
Ciao
|
||||
こんにちは
|
||||
नमस्कार
|
||||
ਸਤ ਸ੍ਰੀ ਅਕਾਲ
|
||||
Привет
|
||||
හෙලෝ
|
||||
வணக்கம்
|
||||
สวัสดี
|
||||
ہیلو
|
||||
xin chào
|
BIN
tests/smoke/old.png
Normal file
BIN
tests/smoke/old.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.6 KiB |
20
tests/smoke/runtest.sh
Normal file
20
tests/smoke/runtest.sh
Normal file
@ -0,0 +1,20 @@
|
||||
#!/bin/bash
|
||||
|
||||
# If one of the commands below returns non-zero then exit immediately
|
||||
set -e
|
||||
|
||||
echo "Testing m17n-dump tool"
|
||||
old_size=`stat -c "%s" old.png`
|
||||
echo "old_size is $old_size"
|
||||
|
||||
m17n-dump hello.txt
|
||||
new_size=`stat -c "%s" hello.txt.png`
|
||||
echo "new_size is $new_size"
|
||||
file old.png hello.txt.png
|
||||
echo "Using font `fc-match`"
|
||||
|
||||
if [ $old_size -ne $new_size ]; then
|
||||
echo "m17n-dump generated different png file"
|
||||
else
|
||||
echo "m17n-dump generated same png file"
|
||||
fi
|
11
tests/tests.yml
Normal file
11
tests/tests.yml
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
- hosts: localhost
|
||||
tags:
|
||||
- classic
|
||||
roles:
|
||||
- role: standard-test-basic
|
||||
tests:
|
||||
- smoke
|
||||
required_packages:
|
||||
- m17n-lib-tools
|
||||
- m17n-lib-devel
|
Loading…
Reference in New Issue
Block a user