diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-01-09 23:44:00 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-01-09 23:44:00 +0100 |
| commit | bc9076e9b5da44574970e3f2b8bbc52ad840b3b2 (patch) | |
| tree | 61b528588e2fd69627bddc425c6de3340714629e /test | |
| parent | 7bf04a96fa404de83867eb61890af665375aef48 (diff) | |
Speed up hints tests by not running a pointless audio analysis.
Diffstat (limited to 'test')
| -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 (); |
