fate.texi 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. \input texinfo @c -*- texinfo -*-
  2. @settitle FATE Automated Testing Environment
  3. @titlepage
  4. @center @titlefont{FATE 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. @chapter Submitting the results to the FFmpeg result aggregation server
  61. To submit your results to the server you should run fate through the
  62. shell script tests/fate.sh from the FFmpeg sources. This script needs
  63. to be invoked with a configuration file as its first argument.
  64. @example
  65. tests/fate.sh /path/to/fate_config
  66. @end example
  67. A configuration file template with comments describing the individual
  68. configuration variables can be found at @file{tests/fate_config.sh.template}.
  69. @ifhtml
  70. The mentioned configuration template is also available here:
  71. @verbatiminclude ../tests/fate_config.sh.template
  72. @end ifhtml
  73. Create a configuration that suits your needs, based on the configuration
  74. template. The `slot' configuration variable can be any string that is not
  75. yet used, but it is suggested that you name it adhering to the following
  76. pattern <arch>-<os>-<compiler>-<compiler version>. The configuration file
  77. itself will be sourced in a shell script, therefore all shell features may
  78. be used. This enables you to setup the environment as you need it for your
  79. build.
  80. For your first test runs the `fate_recv' variable should be empty or
  81. commented out. This will run everything as normal except that it will omit
  82. the submission of the results to the server. The following files should be
  83. present in $workdir as specified in the configuration file:
  84. @itemize
  85. @item configure.log
  86. @item compile.log
  87. @item test.log
  88. @item report
  89. @item version
  90. @end itemize
  91. When you have everything working properly you can create an SSH key and
  92. send its public part to the FATE server administrator.
  93. Configure your SSH client to use public key authentication with that key
  94. when connecting to the FATE server. Also do not forget to check the identity
  95. of the server and to accept its host key. This can usually be achieved by
  96. running your SSH client manually and killing it after you accepted the key.
  97. The FATE server's fingerprint is:
  98. b1:31:c8:79:3f:04:1d:f8:f2:23:26:5a:fd:55:fa:92
  99. The only thing left is to automate the execution of the fate.sh script and
  100. the synchronisation of the samples directory.
  101. @chapter FATE makefile targets and variables
  102. @section Makefile targets
  103. @table @option
  104. @item fate-rsync
  105. Download/synchronize sample files to the configured samples directory.
  106. @item fate-list
  107. Will list all fate/regression test targets.
  108. @item fate
  109. Run the FATE test suite (requires the fate-suite dataset).
  110. @end table
  111. @section Makefile variables
  112. @table @option
  113. @item V
  114. Verbosity level, can be set to 0, 1 or 2.
  115. @itemize
  116. @item 0: show just the test arguments
  117. @item 1: show just the command used in the test
  118. @item 2: show everything
  119. @end itemize
  120. @item SAMPLES
  121. Specify or override the path to the FATE samples at make time, it has a
  122. meaning only while running the regression tests.
  123. @item THREADS
  124. Specify how many threads to use while running regression tests, it is
  125. quite useful to detect thread-related regressions.
  126. @item CPUFLAGS
  127. Specify CPU flags.
  128. @end table
  129. Example:
  130. @example
  131. make V=1 SAMPLES=/var/fate/samples THREADS=2 CPUFLAGS=mmx fate
  132. @end example