Resolves: RHEL-1616 test7

This commit is contained in:
Takao Fujiwara 2025-04-10 16:29:27 +09:00
parent 17d2939c7e
commit 91d602f9bd

View File

@ -72,12 +72,13 @@
# Delete LC_CTYPE=C.UTF-8
export -n LC_CTYPE
status="FAIL: frame"
ibus-desktop-testing-runner \
bash -x ibus-desktop-testing-runner \
--no-graphics \
--runner=gnome \
--tests='{{ installed_test_name }}' \
--output='{{ remote_artifacts }}/{{ installed_test_name }}.log' \
--result='{{ remote_artifacts }}/test.log' \
>& '{{ remote_artifacts }}/foo.log' \
null
if [ $? -eq 0 ]; then
status="PASS: frame"
@ -93,11 +94,15 @@
cat {{ remote_artifacts }}/test.log
fi
echo "#"
echo "#### {{ remote_artifacts }}/foo.log"
if [ -f {{ remote_artifacts }}/foo.log ] ; then
cat {{ remote_artifacts }}/foo.log
fi
echo "#"
- name: Check the results
shell: |
IS_RAWHIDE=`grep -i rawhide /etc/fedora-release`
if [ x"$IS_RAWHIDE" != x ] ; then
if grep -qi rawhide /etc/fedora-release ; then
exit 0
fi
log="{{ remote_artifacts }}/test.log"