fate_config.sh.template 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. slot= # some unique identifier
  2. repo=git://source.ffmpeg.org/ffmpeg.git # the source repository
  3. #branch=release/2.6 # the branch to test
  4. samples= # path to samples directory
  5. workdir= # directory in which to do all the work
  6. #fate_recv="ssh -T fate@fate.ffmpeg.org" # command to submit report
  7. comment= # optional description
  8. build_only= # set to "yes" for a compile-only instance that skips tests
  9. ignore_tests=
  10. # the following are optional and map to configure options
  11. arch=
  12. cpu=
  13. cross_prefix=
  14. as=
  15. cc=
  16. ld=
  17. target_os=
  18. sysroot=
  19. target_exec=
  20. target_path=
  21. target_samples=
  22. extra_cflags=
  23. extra_ldflags=
  24. extra_libs=
  25. extra_conf= # extra configure options not covered above
  26. #make= # name of GNU make if not 'make'
  27. makeopts= # extra options passed to 'make'
  28. #makeopts_fate= # extra options passed to 'make' when running tests,
  29. # defaulting to makeopts above if this is not set
  30. #tar= # command to create a tar archive from its arguments on stdout,
  31. # defaults to 'tar c'
  32. #fate_targets= # targets to make when running fate; defaults to "fate",
  33. # can be set to run a subset of tests, e.g. "fate-checkasm".
  34. #fate_environments= # a list of names of configurations to run tests for;
  35. # each round is run with variables from ${${name}_env} set.
  36. # One example of using fate_environments:
  37. # target_exec="qemu-aarch64-static"
  38. # fate_targets="fate-checkasm fate-cpu"
  39. # fate_environments="sve128 sve256"
  40. # sve128_env="QEMU_CPU=max,sve128=on"
  41. # sve256_env="QEMU_CPU=max,sve256=on"
  42. # The variables set by fate_environments can also be used explicitly
  43. # by target_exec, e.g. like this:
  44. # target_exec="qemu-aarch64-static -cpu \$(MY_CPU)"
  45. # fate_targets="fate-checkasm fate-cpu"
  46. # fate_environments="sve128 sve256"
  47. # sve128_env="MY_CPU=max,sve128=on"
  48. # sve256_env="MY_CPU=max,sve256=on"