4d19b59761
- If the first candidate is exactly the same as the typed string prefer longer candidates (Extends inline completions automatically) - Move README to README.md and use some markdown to make it look better on github - When showing similar emoji in the lookup table, show the list of keywords which matched only when debugging is on - Update emoji annotations from CLDR - More unittests, restructure test files, move some doctests to unittests - Add a utility class KeyvalsToKeycodes to find ibus key codes instead of hardcoding them - Add ceb to CLDR_ANNOTATION_FILES
20 lines
296 B
Bash
20 lines
296 B
Bash
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
check_return_value () {
|
|
if [ $1 != 0 ] ; then
|
|
exit $1
|
|
fi
|
|
}
|
|
|
|
cd $1
|
|
|
|
export DISPLAY=:1
|
|
Xvfb $DISPLAY -screen 0 1024x768x16 &
|
|
|
|
./configure --prefix=/usr
|
|
check_return_value $?
|
|
make check && rc=0 || rc=1; cat tests/run_tests.log; cat tests/test-suite.log
|
|
exit $rc
|