diff options
author | 2022-09-27 14:47:22 +0200 | |
---|---|---|
committer | 2022-09-30 09:01:08 +0200 | |
commit | d46716b7fae296d48dff663ced83889a7e2a9a11 (patch) | |
tree | ae4729d8711ffd040c451548b092355313e81f52 /dex2oat/common_compiler_driver_test.h | |
parent | 35be57fee6702d3847177343ab91899ba402eb9c (diff) |
Move `VerificationResults` to dex2oat/.
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Change-Id: Iff62c9b8c6e553113cbd12765bf0f691bbe24227
Diffstat (limited to 'dex2oat/common_compiler_driver_test.h')
-rw-r--r-- | dex2oat/common_compiler_driver_test.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dex2oat/common_compiler_driver_test.h b/dex2oat/common_compiler_driver_test.h index 1ff88e5b61..b49d18fa10 100644 --- a/dex2oat/common_compiler_driver_test.h +++ b/dex2oat/common_compiler_driver_test.h @@ -31,6 +31,7 @@ class CompilerDriver; class DexFile; class ProfileCompilationInfo; class TimingLogger; +class VerificationResults; class CommonCompilerDriverTest : public CommonCompilerTest { public: @@ -62,6 +63,7 @@ class CommonCompilerDriverTest : public CommonCompilerTest { size_t number_of_threads_ = 2u; + std::unique_ptr<VerificationResults> verification_results_; std::unique_ptr<CompilerDriver> compiler_driver_; private: |