]> granicus.if.org Git - libvpx/commitdiff
Add missing virtual destructors to tests.
authorAlex Converse <aconverse@google.com>
Wed, 12 Mar 2014 21:51:42 +0000 (14:51 -0700)
committerAlex Converse <aconverse@google.com>
Wed, 12 Mar 2014 21:51:42 +0000 (14:51 -0700)
Change-Id: I916b1e646d9fe142d3483039eb6cc72464529832

test/borders_test.cc
test/config_test.cc
test/cpu_speed_test.cc
test/keyframe_test.cc
test/superframe_test.cc

index 5071541abf522f099dacc0078fd4fb9e08eaf211..b30be4580f617f03290d94a8653a2200508769c1 100644 (file)
@@ -21,6 +21,7 @@ class BordersTest : public ::libvpx_test::EncoderTest,
     public ::libvpx_test::CodecTestWithParam<libvpx_test::TestMode> {
  protected:
   BordersTest() : EncoderTest(GET_PARAM(0)) {}
+  virtual ~BordersTest() {}
 
   virtual void SetUp() {
     InitializeConfig();
index 36c63302bc0f3713b076a54576d8d74e72ba0c2d..04931103d7a58acd92616e9330e6a1637b662621 100644 (file)
@@ -20,6 +20,7 @@ class ConfigTest : public ::libvpx_test::EncoderTest,
  protected:
   ConfigTest() : EncoderTest(GET_PARAM(0)),
                  frame_count_in_(0), frame_count_out_(0), frame_count_max_(0) {}
+  virtual ~ConfigTest() {}
 
   virtual void SetUp() {
     InitializeConfig();
index 569ff2605e5bfd10949f2ee1e6d710ae1b7f3c5c..be651b4fe868e288c4aae161aab623d63cb5fd4e 100644 (file)
@@ -22,6 +22,7 @@ class CpuSpeedTest : public ::libvpx_test::EncoderTest,
         libvpx_test::TestMode, int> {
  protected:
   CpuSpeedTest() : EncoderTest(GET_PARAM(0)) {}
+  virtual ~CpuSpeedTest() {}
 
   virtual void SetUp() {
     InitializeConfig();
index 7ee289844fa6b91e215f407a3c8d4b21e5be3c6c..d8b21a14d23b34d8bc43165f8f34218a951b3a87 100644 (file)
@@ -21,6 +21,7 @@ class KeyframeTest : public ::libvpx_test::EncoderTest,
     public ::libvpx_test::CodecTestWithParam<libvpx_test::TestMode> {
  protected:
   KeyframeTest() : EncoderTest(GET_PARAM(0)) {}
+  virtual ~KeyframeTest() {}
 
   virtual void SetUp() {
     InitializeConfig();
index d91e7b10b4f1a92f0578df901111c8135a139721..c0f542da8f7e8d3d9aa98b80947e5f8ac6979102 100644 (file)
@@ -21,6 +21,7 @@ class SuperframeTest : public ::libvpx_test::EncoderTest,
  protected:
   SuperframeTest() : EncoderTest(GET_PARAM(0)), modified_buf_(NULL),
       last_sf_pts_(0) {}
+  virtual ~SuperframeTest() {}
 
   virtual void SetUp() {
     InitializeConfig();