Changeset 920 for tests/process
- Timestamp:
- Jul 31, 2011, 10:16:23 PM (14 years ago)
- Location:
- tests/process
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/process/child/child.pro
r910 r920 1 DEPTH = ../.. 2 include($$DEPTH/common.pri) 3 4 DESTDIR = .. 1 DEPTH = .. 2 include(../$$DEPTH/common.pri) 5 3 6 4 QT = -
tests/process/process-async/process-async.pro
r910 r920 1 DEPTH = ../.. 2 include($$DEPTH/common.pri) 3 4 DESTDIR = .. 1 DEPTH = .. 2 include(../$$DEPTH/common.pri) 5 3 6 4 QT = core gui -
tests/process/process-sync/process-sync.pro
r914 r920 1 DEPTH = ../.. 2 include($$DEPTH/common.pri) 3 4 DESTDIR = .. 1 DEPTH = .. 2 include(../$$DEPTH/common.pri) 5 3 6 4 QT = core … … 8 6 SOURCES = process-sync.cpp 9 7 10 FILES = process-sync-test.cmd process-sync-helper.cmd 8 os2 { 9 FILES = process-sync-test.cmd process-sync-helper.cmd 11 10 12 bigfile.target = $$DESTDIR/bigfile.txt13 os2:bigfile.commands = $$PWD/../mkbigfile.cmd 1500000 $$PWD/process-sync.cpp $${bigfile.target}14 15 QMAKE_EXTRA_TARGETS += bigfile sleep 16 POST_TARGETDEPS = $${bigfile.target} $${sleep.target}11 bigfile.target = $$DESTDIR/bigfile.txt 12 bigfile.commands = $$PWD/../mkbigfile.cmd 1500000 $$PWD/process-sync.cpp $${bigfile.target} 13 QMAKE_EXTRA_TARGETS += bigfile 14 POST_TARGETDEPS = $${bigfile.target} 15 } -
tests/process/test/test.cpp
r218 r920 1 1 #include <stdlib.h> 2 2 #include <stdio.h> 3 #include <io.h>4 3 #include <string.h> 5 4 #include <fcntl.h> 5 6 7 8 9 10 6 11 7 12 #ifdef WIN32 … … 17 22 #define BUF_SIZE 4096 18 23 19 int main( int argc, char *argv[])24 int main() 20 25 { 21 26 #if 1 -
tests/process/test/test.pro
r910 r920 1 DEPTH = ../.. 2 include($$DEPTH/common.pri) 3 4 DESTDIR = .. 1 DEPTH = .. 2 include(../$$DEPTH/common.pri) 5 3 6 4 QT =
Note:
See TracChangeset
for help on using the changeset viewer.