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 5071541..b30be45 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 36c6330..0493110 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 569ff26..be651b4 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 7ee2898..d8b21a1 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 d91e7b1..c0f542d 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();