diff --git a/.gitignore b/.gitignore index 3376a42..742086d 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/tests/smoke/hello.txt b/tests/smoke/hello.txt new file mode 100644 index 0000000..6f6082a --- /dev/null +++ b/tests/smoke/hello.txt @@ -0,0 +1,15 @@ +hallo +እው ሰላም ነው +مرحبا +হ্যালো +你好 +Ciao +こんにちは +नमस्कार +ਸਤ ਸ੍ਰੀ ਅਕਾਲ +Привет +හෙලෝ +வணக்கம் +สวัสดี +ہیلو +xin chào diff --git a/tests/smoke/old.png b/tests/smoke/old.png new file mode 100644 index 0000000..7111cfd Binary files /dev/null and b/tests/smoke/old.png differ diff --git a/tests/smoke/runtest.sh b/tests/smoke/runtest.sh new file mode 100644 index 0000000..1b982f5 --- /dev/null +++ b/tests/smoke/runtest.sh @@ -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 diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..43337e6 --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,11 @@ +--- +- hosts: localhost + tags: + - classic + roles: + - role: standard-test-basic + tests: + - smoke + required_packages: + - m17n-lib-tools + - m17n-lib-devel