• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

cert/25-Apr-2025-696580

common/25-Apr-2025-4,7593,073

crypto_toolbox/25-Apr-2025-2,0421,432

docs/25-Apr-2025-843650

facade/25-Apr-2025-482324

fuzz/25-Apr-2025-163104

grpc/25-Apr-2025-282150

hal/25-Apr-2025-9,6306,890

hci/25-Apr-2025-41,03432,266

lpp/25-Apr-2025-322157

metrics/25-Apr-2025-2,5621,890

neighbor/25-Apr-2025-650413

os/25-Apr-2025-8,9655,942

packet/25-Apr-2025-14,64610,045

proto/25-Apr-2025-389307

rust/25-Apr-2025-56,55445,145

shim/25-Apr-2025-205134

storage/25-Apr-2025-4,8453,507

sysprops/25-Apr-2025-369256

.gitignoreD25-Apr-202548 43

Android.bpD25-Apr-202515.5 KiB631613

AndroidTestTemplate.xmlD25-Apr-20252.3 KiB4629

BUILD.gnD25-Apr-20252 KiB7666

README.mdD25-Apr-2025865 2716

benchmark.ccD25-Apr-2025848 268

fuzz_test.ccD25-Apr-2025948 298

module.ccD25-Apr-20254.6 KiB13289

module.hD25-Apr-20255.9 KiB222142

module_unittest.ccD25-Apr-20257.3 KiB230152

stack_manager.ccD25-Apr-20253.4 KiB10666

stack_manager.hD25-Apr-20251.4 KiB5126

stack_manager_unittest.ccD25-Apr-20251.8 KiB5934

README.md

1### Why is gabeldorsche plural?
2
3Please see this [informative video we've prepared](https://www.youtube.com/watch?v=vLRyJ0dawjM).
4
5### Architecture
6
7Guidelines for developing the Gabeldorsche (GD) stack
8
9*   [Architecture](./docs/architecture/architecture.md)
10
11### Testing
12
13Gabeldorsche (GD) was built with test driven development in mind. Three types of
14tests are used in ensuring Gabeldorsche stack's stability, correctness and free
15from regression.
16
17If you are verifying something is glued or hooked up correctly inside the stack,
18use a unit test.
19
20*   [GTest Unit Test](./docs/testing/gtest.md)
21
22If you are verifying correct behavior (especially interop problems) **DO NOT**
23write a unit test as this not a good use of your time. Write a [cert test](./cert_test.md) instead
24so it applies to any stack.
25
26*   [GD Certification Tests](./docs/testing/cert_test.md)
27