Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
README | H A D | 27-Feb-2022 | 640 | 15 | 10 | |
copytester.cpp | H A D | 27-Feb-2022 | 1.4 KiB | 50 | 35 | |
copytester.h | H A D | 27-Feb-2022 | 529 | 22 | 16 | |
main.cpp | H A D | 27-Feb-2022 | 687 | 22 | 16 |
README
1copytester is a test case for the fish kioslave. It copies 100 files from /tmp to /tmp/test using fish's functions. 2It was written to verify KDE bug 147948: https://bugs.kde.org/show_bug.cgi?id=147948 3 4To run it, do the following: 5mkdir /tmp/test 6for i in $(seq 1 1 100); do touch /tmp/fishtest${i}.txt; done 7cmake . && make -j4 && rm /tmp/test/*; ./copytester 8 9Then, to run it again and again, do: 10rm /tmp/test/*; ./copytester 11 12If the program is successful (i.e. the bug does not exist) it will terminate, otherwise, run infinitely. 13 14More info: http://techbase.kde.org/Development/Tutorials/Debugging/Debugging_IOSlaves/Debugging_kio_fish 15