Move test_target_ops to a separate file
[external/binutils.git] / gdb / test-target.h
1 /* A mock process_stratum target_ops
2
3    Copyright (C) 2017-2018 Free Software Foundation, Inc.
4
5    This file is part of GDB.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 #ifndef TEST_TARGET_H
21 #define TEST_TARGET_H
22
23 #include "target.h"
24
25 #if GDB_SELF_TEST
26 namespace selftests {
27
28 /* A mock process_stratum target_ops that doesn't read/write registers
29    anywhere.  */
30
31 class test_target_ops : public target_ops
32 {
33 public:
34   test_target_ops ()
35     : target_ops {}
36   {
37     to_stratum = process_stratum;
38   }
39
40   const target_info &info () const override;
41
42   bool has_registers () override
43   {
44     return true;
45   }
46
47   bool has_stack () override
48   {
49     return true;
50   }
51
52   bool has_memory () override
53   {
54     return true;
55   }
56
57   void prepare_to_store (regcache *regs) override
58   {
59   }
60
61   void store_registers (regcache *regs, int regno) override
62   {
63   }
64 };
65
66 } // namespace selftests
67 #endif /* GDB_SELF_TEST */
68
69 #endif /* !defined (TEST_TARGET_H) */