object-introspection/test
Alastair Robertson 04ce7446b2 AddPadding: Always pad bitfields with "int8_t"s
The underlying type of bitfield is important to the size of a struct:

  struct Foo { int64_t bitfield : 1; };
  struct Bar { int8_t bitfield : 1; };

  sizeof(Foo) = 8;
  sizeof(Bar) = 1;
2023-07-24 16:55:26 +01:00
..
integration test: cycles: add test where oid sees the initial raw pointer 2023-07-24 15:32:38 +01:00
ci.oid.toml Take list of pass-through types from config instead of hardcoding 2023-07-05 13:39:19 +01:00
CMakeLists.txt googletest: change to FetchContent 2023-07-21 17:18:06 +01:00
integration_entry_doStuff_arg0.oid Initial commit 2022-12-19 06:37:51 -08:00
integration_entry_doStuff_this.oid Initial commit 2022-12-19 06:37:51 -08:00
integration_entry_inc_arg0.oid Initial commit 2022-12-19 06:37:51 -08:00
integration_mttest.cpp Fix warnings in test code 2023-05-23 10:36:42 +01:00
integration_return_incN_arg0.oid Initial commit 2022-12-19 06:37:51 -08:00
integration_sleepy.cpp Fix warnings in test code 2023-05-23 10:36:42 +01:00
integration.py integration_py: fix expected sizes 2023-05-31 19:00:10 +02:00
main.cpp Tests: Split common code out into type_graph_utils 2023-05-31 15:49:37 +01:00
mocks.h Unit Tests: Create MockSymbolService 2023-06-23 14:23:53 +01:00
mttest.h formatting: force pointers/references with the type 2023-03-24 20:18:18 +00:00
test_add_children.cpp AddChildren: Filter out false children 2023-07-11 13:52:39 +01:00
test_add_padding.cpp AddPadding: Always pad bitfields with "int8_t"s 2023-07-24 16:55:26 +01:00
test_alignment_calc.cpp TypeGraph: Switch from pointers to references 2023-07-06 17:24:33 +01:00
test_codegen.cpp TypeGraph: Switch from pointers to references 2023-07-06 17:24:33 +01:00
test_compiler.cpp move src directory to oi (#134) 2023-04-26 16:20:53 +01:00
test_container_info.cpp ContainerInfo: Move matcher regex construction to class ctor and add unit tests 2023-05-26 18:21:59 +01:00
test_drgn_parser.cpp DrgnParserTest: Split into reusable components 2023-07-11 13:52:39 +01:00
test_drgn_parser.h DrgnParserTest: Split into reusable components 2023-07-11 13:52:39 +01:00
test_flattener.cpp TypeGraph: Introduce TypeGraphParser to simplify unit testing 2023-07-13 17:38:49 +01:00
test_name_gen.cpp TypeGraph: Better handling for anonymous types 2023-07-12 17:44:38 +01:00
test_node_tracker.cpp TypeGraph: Introduce NodeTracker for efficient cycle detection 2023-07-12 14:39:56 +01:00
test_parser.cpp move src directory to oi (#134) 2023-04-26 16:20:53 +01:00
test_remove_ignored.cpp RemoveIgnored: Recurse into params,parents,members,children of Classes 2023-07-24 15:02:20 +01:00
test_remove_top_level_pointer.cpp TypeGraph: Switch from pointers to references 2023-07-06 17:24:33 +01:00
test_topo_sorter.cpp TypeGraph: Switch from pointers to references 2023-07-06 17:24:33 +01:00
test_type_identifier.cpp RemoveIgnored: Recurse into params,parents,members,children of Classes 2023-07-24 15:02:20 +01:00
type_graph_utils.cpp TypeGraphParser: Throw custom error types 2023-07-18 17:18:28 +01:00
type_graph_utils.h TypeGraph: Introduce TypeGraphParser to simplify unit testing 2023-07-13 17:38:49 +01:00
TypeGraphParser.cpp TypeGraphParser: Fix lifetimes of ContainerInfo objects 2023-07-18 17:18:28 +01:00
TypeGraphParser.h TypeGraphParser: Throw custom error types 2023-07-18 17:18:28 +01:00