re-import sources as agreed with the maintainer
This commit is contained in:
parent
abf39d1a63
commit
ae19eb3c4b
7
.gitignore
vendored
7
.gitignore
vendored
@ -1,2 +1,7 @@
|
||||
SOURCES/m17n-lib-1.8.0.tar.gz
|
||||
m17n-lib-1.6.1.tar.gz
|
||||
/m17n-lib-1.6.2.tar.gz
|
||||
/m17n-lib-1.6.3.tar.gz
|
||||
/m17n-lib-1.6.4.tar.gz
|
||||
/m17n-lib-1.7.0.tar.gz
|
||||
/m17n-lib-1.8.0RC.tar.gz
|
||||
/m17n-lib-1.8.0.tar.gz
|
||||
|
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 (image error) 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