diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-01-09 23:44:00 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-01-11 09:15:51 +0100 |
| commit | cd6c6a693f19fcaa6c75ed60f48a54a8cae51352 (patch) | |
| tree | 591ae7b6c988811d683ff008f8d922b1cae4e79f /test/hints_test.cc | |
| parent | 7a34ca0a61058b0a742e7187845b2eeb0af6a24b (diff) | |
Speed up hints tests by not running a pointless audio analysis.
Diffstat (limited to 'test/hints_test.cc')
| -rw-r--r-- | test/hints_test.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/hints_test.cc b/test/hints_test.cc index 263f02435..c228cd07a 100644 --- a/test/hints_test.cc +++ b/test/hints_test.cc @@ -56,6 +56,8 @@ get_hints (shared_ptr<Film> film) { current_hints.clear (); Hints hints (film); + /* None of our tests need the audio analysis, and it is quite time-consuming */ + hints.disable_audio_analysis (); hints.Hint.connect (collect_hint); hints.start (); hints.join (); |
