• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

READMEH A D27-Feb-2022640 1510

copytester.cppH A D27-Feb-20221.4 KiB5035

copytester.hH A D27-Feb-2022529 2216

main.cppH A D27-Feb-2022687 2216

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