This repository has been archived on 2025-12-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
yachat/qa/oldtest/checkall
2025-12-25 01:38:25 +05:00

12 lines
463 B
Bash

#!/bin/bash
# WARNING! All changes made in this file will be lost!
basedir=`pwd`
do_make() {
if test ! -e Makefile; then qmake; fi
make check
}
cd ../src/tools/iconset/unittest && do_make && cd $basedir && \
cd ../src/widgets/unittest/iconaction && do_make && cd $basedir && \
cd ../src/widgets/unittest/richtext && do_make && cd $basedir && \
cd ../src/unittest/psiiconset && do_make && cd $basedir && \
cd ../src/unittest/psipopup && do_make && cd $basedir