• Home
Name Date Size #Lines LOC

..--

common/04-Jul-2025-4,6723,022

crypto_toolbox/04-Jul-2025-2,0351,426

docs/architecture/04-Jul-2025-314248

fuzz/04-Jul-2025-14790

hal/04-Jul-2025-9,8247,011

hci/04-Jul-2025-38,93330,759

lpp/04-Jul-2025-306143

metrics/04-Jul-2025-2,7142,027

os/04-Jul-2025-8,9585,969

packet/04-Jul-2025-14,64610,045

proto/04-Jul-2025-7666

rust/04-Jul-2025-54,81643,604

storage/04-Jul-2025-4,7943,462

sysprops/04-Jul-2025-346236

.gitignoreD04-Jul-202548 43

Android.bpD04-Jul-202517.2 KiB626612

AndroidTestTemplate.xmlD04-Jul-20252.3 KiB4629

BUILD.gnD04-Jul-20251.9 KiB7363

README.mdD04-Jul-2025865 2716

benchmark.ccD04-Jul-2025852 268

fuzz_test.ccD04-Jul-2025848 267

module.ccD04-Jul-20256.8 KiB190134

module.hD04-Jul-20256.6 KiB240154

module_unittest.ccD04-Jul-20257.6 KiB238160

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