initial commit
This commit is contained in:
commit
9d20827c46
2469 changed files with 470994 additions and 0 deletions
12
qa/oldtest/checkall
Normal file
12
qa/oldtest/checkall
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#!/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
|
||||
Reference in a new issue