diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-03-06 23:57:53 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-03-06 23:57:53 +0000 |
| commit | 48c2e65858689101c23e8e3197b63c67cb1d62c7 (patch) | |
| tree | 025cedd1f24a4ef69c82930f0092168ff1703b82 | |
| parent | 723f71ae3d3568d4746d4db13df906e0e2c9fb2a (diff) | |
Fix missed subclass of Job in the tests.
| -rw-r--r-- | test/job_test.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/job_test.cc b/test/job_test.cc index fa4890470..22dd3a33a 100644 --- a/test/job_test.cc +++ b/test/job_test.cc @@ -40,6 +40,11 @@ public: } + ~TestJob () + { + stop_thread (); + } + void set_finished_ok () { set_state (FINISHED_OK); } |
