strverscmp
==========
Testing framework for new strverscmp function.


Build/run
---------
1. Download and build current coreutils git HEAD:

2. Link sources with coreutils sources:
        $ ./relink.sh PATH_TO_COREUTILS_SOURCES


3. Build necessary files in 'src' directory
        $ cd src
        $ make

        
4. Run tests you want
        $ ./check.sh input.txt sort-rpm  # if you have input data in input.txt
        $ ./check.sh input.txt sort-deb  # same with ./sort-deb utility
        $ ./check.sh input.txt my-sort   # same with your ./my-sort utility

        $ ./vergen 1000 > input.txt      # generate random input data
                                         # (1000 version strings)

        $ ./test.sh 1000                 # combination of the commands above


5. If any test fails - there will be 'out-*' files, which can be compared with
   'output' file to see details and 'input' file containing original input

