fate.txt 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. FATE Automated Testing Environment
  2. ==================================
  3. FATE is an extended regression suite on the client-side and a means
  4. for results aggregation and presentation on the server-side.
  5. The first part of this document explains how you can use FATE from
  6. your FFmpeg source directory to test your ffmpeg binary. The second
  7. part describes how you can run FATE to submit the results to FFmpeg's
  8. FATE server.
  9. In any way you can have a look at the publicly viewable FATE results
  10. by visiting this website:
  11. http://fate.ffmpeg.org/
  12. This is especially recommended for all people contributing source
  13. code to FFmpeg, as it can be seen if some test on some platform broke
  14. with there recent contribution. This usually happens on the platforms
  15. the developers could not test on.
  16. The second part of this document describes how you can run FATE to
  17. submit your results to FFmpeg's FATE server. If you want to submit your
  18. results be sure to check that your combination of CPU, OS and compiler
  19. is not already listed on the above mentioned website.
  20. In the third part you can find a comprehensive listing of FATE makefile
  21. targets and variables.
  22. 1. Using FATE from your FFmpeg source directory
  23. -----------------------------------------------
  24. If you want to run FATE on your machine you need to have the samples
  25. in place. You can get the samples via the build target fate-rsync.
  26. Use this command from the top-level source directory:
  27. # make fate-rsync SAMPLES=fate-suite/
  28. # make fate SAMPLES=fate-suite/
  29. The above commands set the samples location by passing a makefile
  30. variable via command line. It is also possible to set the samples
  31. location at source configuration time by invoking configure with
  32. `--samples=<path to the samples directory>'. Afterwards you can
  33. invoke the makefile targets without setting the SAMPLES makefile
  34. variable. This is illustrated by the following commands:
  35. # ./configure --samples=fate-suite/
  36. # make fate-rsync
  37. # make fate
  38. Yet another way to tell FATE about the location of the sample
  39. directory is by making sure the environment variable FATE_SAMPLES
  40. contains the path to your samples directory. This can be achieved
  41. by e.g. putting that variable in your shell profile or by setting
  42. it in your interactive session.
  43. # FATE_SAMPLES=fate-suite/ make fate
  44. NOTE:
  45. Do not put a '~' character in the samples path to indicate a home
  46. directory. Because of shell nuances, this will cause FATE to fail.
  47. 2. Submitting the results to the FFmpeg result aggregation server
  48. -----------------------------------------------------------------
  49. To submit your results to the server you should run fate through the
  50. shell script tests/fate.sh from the FFmpeg sources. This script needs
  51. to be invoked with a configuration file as its first argument.
  52. # tests/fate.sh /path/to/fate_config
  53. A configuration file template with comments describing the individual
  54. configuration variables can be found at tests/fate_config.sh.template .
  55. Create a configuration that suits your needs, based on the configuration
  56. template. The `slot' configuration variable can be any string that is not
  57. yet used, but it is suggested that you name it adhering to the following
  58. pattern <arch>-<os>-<compiler>-<compiler version>. The configuration file
  59. itself will be sourced in a shell script, therefore all shell features may
  60. be used. This enables you to setup the environment as you need it for your
  61. build.
  62. For your first test runs the `fate_recv' variable should be empty or
  63. commented out. This will run everything as normal except that it will omit
  64. the submission of the results to the server. The following files should be
  65. present in $workdir as specified in the configuration file:
  66. - configure.log
  67. - compile.log
  68. - test.log
  69. - report
  70. - version
  71. When you have everything working properly you can create an SSH key and
  72. send its public part to the FATE server administrator.
  73. Configure your SSH client to use public key authentication with that key
  74. when connecting to the FATE server. Also do not forget to check the identity
  75. of the server and to accept its host key. This can usually be achieved by
  76. running your SSH client manually and killing it after you accepted the key.
  77. The FATE server's fingerprint is:
  78. b1:31:c8:79:3f:04:1d:f8:f2:23:26:5a:fd:55:fa:92
  79. The only thing left is to automate the execution of the fate.sh script and
  80. the synchronisation of the samples directory.
  81. 3. FATE makefile targets and variables
  82. --------------------------------------
  83. FATE Makefile targets:
  84. fate-list
  85. Will list all fate/regression test targets.
  86. fate
  87. Run the FATE test suite (requires the fate-suite dataset).
  88. FATE Makefile variables:
  89. V
  90. Verbosity level, can be set to 0, 1 or 2.
  91. * 0: show just the test arguments
  92. * 1: show just the command used in the test
  93. * 2: show everything
  94. SAMPLES
  95. Specify or override the path to the FATE samples at make time, it has a
  96. meaning only while running the regression tests.
  97. THREADS
  98. Specify how many threads to use while running regression tests, it is
  99. quite useful to detect thread-related regressions.
  100. Example:
  101. make V=1 SAMPLES=/var/fate/samples THREADS=2 fate