fate.texi 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. \input texinfo @c -*- texinfo -*-
  2. @settitle FFmpeg Automated Testing Environment
  3. @titlepage
  4. @center @titlefont{FFmpeg Automated Testing Environment}
  5. @end titlepage
  6. @node Top
  7. @top
  8. @contents
  9. @chapter Introduction
  10. FATE is an extended regression suite on the client-side and a means
  11. for results aggregation and presentation on the server-side.
  12. The first part of this document explains how you can use FATE from
  13. your FFmpeg source directory to test your ffmpeg binary. The second
  14. part describes how you can run FATE to submit the results to FFmpeg's
  15. FATE server.
  16. In any way you can have a look at the publicly viewable FATE results
  17. by visiting this website:
  18. @url{http://fate.ffmpeg.org/}
  19. This is especially recommended for all people contributing source
  20. code to FFmpeg, as it can be seen if some test on some platform broke
  21. with there recent contribution. This usually happens on the platforms
  22. the developers could not test on.
  23. The second part of this document describes how you can run FATE to
  24. submit your results to FFmpeg's FATE server. If you want to submit your
  25. results be sure to check that your combination of CPU, OS and compiler
  26. is not already listed on the above mentioned website.
  27. In the third part you can find a comprehensive listing of FATE makefile
  28. targets and variables.
  29. @chapter Using FATE from your FFmpeg source directory
  30. If you want to run FATE on your machine you need to have the samples
  31. in place. You can get the samples via the build target fate-rsync.
  32. Use this command from the top-level source directory:
  33. @example
  34. make fate-rsync SAMPLES=fate-suite/
  35. make fate SAMPLES=fate-suite/
  36. @end example
  37. The above commands set the samples location by passing a makefile
  38. variable via command line. It is also possible to set the samples
  39. location at source configuration time by invoking configure with
  40. `--samples=<path to the samples directory>'. Afterwards you can
  41. invoke the makefile targets without setting the SAMPLES makefile
  42. variable. This is illustrated by the following commands:
  43. @example
  44. ./configure --samples=fate-suite/
  45. make fate-rsync
  46. make fate
  47. @end example
  48. Yet another way to tell FATE about the location of the sample
  49. directory is by making sure the environment variable FATE_SAMPLES
  50. contains the path to your samples directory. This can be achieved
  51. by e.g. putting that variable in your shell profile or by setting
  52. it in your interactive session.
  53. @example
  54. FATE_SAMPLES=fate-suite/ make fate
  55. @end example
  56. @float NOTE
  57. Do not put a '~' character in the samples path to indicate a home
  58. directory. Because of shell nuances, this will cause FATE to fail.
  59. @end float
  60. To use a custom wrapper to run the test, pass @option{--target-exec} to
  61. @command{configure} or set the @var{TARGET_EXEC} Make variable.
  62. @chapter Submitting the results to the FFmpeg result aggregation server
  63. To submit your results to the server you should run fate through the
  64. shell script @file{tests/fate.sh} from the FFmpeg sources. This script needs
  65. to be invoked with a configuration file as its first argument.
  66. @example
  67. tests/fate.sh /path/to/fate_config
  68. @end example
  69. A configuration file template with comments describing the individual
  70. configuration variables can be found at @file{tests/fate_config.sh.template}.
  71. @ifhtml
  72. The mentioned configuration template is also available here:
  73. @verbatiminclude ../tests/fate_config.sh.template
  74. @end ifhtml
  75. Create a configuration that suits your needs, based on the configuration
  76. template. The `slot' configuration variable can be any string that is not
  77. yet used, but it is suggested that you name it adhering to the following
  78. pattern <arch>-<os>-<compiler>-<compiler version>. The configuration file
  79. itself will be sourced in a shell script, therefore all shell features may
  80. be used. This enables you to setup the environment as you need it for your
  81. build.
  82. For your first test runs the `fate_recv' variable should be empty or
  83. commented out. This will run everything as normal except that it will omit
  84. the submission of the results to the server. The following files should be
  85. present in $workdir as specified in the configuration file:
  86. @itemize
  87. @item configure.log
  88. @item compile.log
  89. @item test.log
  90. @item report
  91. @item version
  92. @end itemize
  93. When you have everything working properly you can create an SSH key pair
  94. and send the public key to the FATE server administrator who can be contacted
  95. at the email address @email{fate-admin@@ffmpeg.org}.
  96. Configure your SSH client to use public key authentication with that key
  97. when connecting to the FATE server. Also do not forget to check the identity
  98. of the server and to accept its host key. This can usually be achieved by
  99. running your SSH client manually and killing it after you accepted the key.
  100. The FATE server's fingerprint is:
  101. b1:31:c8:79:3f:04:1d:f8:f2:23:26:5a:fd:55:fa:92
  102. If you have problems connecting to the FATE server, it may help to try out
  103. the @command{ssh} command with one or more @option{-v} options. You should
  104. get detailed output concerning your SSH configuration and the authentication
  105. process.
  106. The only thing left is to automate the execution of the fate.sh script and
  107. the synchronisation of the samples directory.
  108. @chapter FATE makefile targets and variables
  109. @section Makefile targets
  110. @table @option
  111. @item fate-rsync
  112. Download/synchronize sample files to the configured samples directory.
  113. @item fate-list
  114. Will list all fate/regression test targets.
  115. @item fate
  116. Run the FATE test suite (requires the fate-suite dataset).
  117. @end table
  118. @section Makefile variables
  119. @table @option
  120. @item V
  121. Verbosity level, can be set to 0, 1 or 2.
  122. @itemize
  123. @item 0: show just the test arguments
  124. @item 1: show just the command used in the test
  125. @item 2: show everything
  126. @end itemize
  127. @item SAMPLES
  128. Specify or override the path to the FATE samples at make time, it has a
  129. meaning only while running the regression tests.
  130. @item THREADS
  131. Specify how many threads to use while running regression tests, it is
  132. quite useful to detect thread-related regressions.
  133. @item THREAD_TYPE
  134. Specify which threading strategy test, either @var{slice} or @var{frame},
  135. by default @var{slice+frame}
  136. @item CPUFLAGS
  137. Specify CPU flags.
  138. @item TARGET_EXEC
  139. Specify or override the wrapper used to run the tests.
  140. The @var{TARGET_EXEC} option provides a way to run FATE wrapped in
  141. @command{valgrind}, @command{qemu-user} or @command{wine} or on remote targets
  142. through @command{ssh}.
  143. @end table
  144. @section Examples
  145. @example
  146. make V=1 SAMPLES=/var/fate/samples THREADS=2 CPUFLAGS=mmx fate
  147. @end example