| # Contributing to FIDL |
| |
| [TOC] |
| |
| ## Overview |
| |
| The [FIDL][fidl-readme] toolchain is composed of roughly three parts: |
| |
| 1. Front-end, a.k.a. `fidlc` |
| * Parses and validates `.fidl` files |
| * Calculates size, alignment, and offset of various structures |
| * Produces a [JSON IR][jsonir] (Intermediate Representation) |
| 2. Back-end |
| * Works off the IR (except the C back-end) |
| * Produces target language specific code, which ties into the libraries for that language |
| 3. Runtime Libraries |
| * Implement encoding/decoding/validation of messages |
| * Method dispatching mechanics |
| |
| ### Code Location |
| |
| The front-end lives at [//zircon/tools/fidl/][fidlc-source], |
| with tests in [//zircon/system/utest/fidl-compiler/][fidlc-compiler-tests]. |
| |
| The back-end and runtime library locations are based on the target: |
| |
| Target | Back-end | Runtime Libraries |
| -----------|--------------------------------------------------------|------------------ |
| C | [//zircon/tools/fidl/lib/c_generator.cc][be-c] | [//zircon/system/ulib/fidl/][rtl-c] |
| C++ | [//tools/fidl/fidlgen_hlcpp/][be-hlcpp] | [//zircon/system/ulib/fidl/][rtl-c] & [//sdk/lib/fidl/cpp/][rtl-cpp] |
| Go | [//tools/fidl/fidlgen_go/][be-go] | [//third_party/go/src/syscall/zx/fidl/][rtl-go] |
| Rust | [//tools/fidl/fidlgen_rust/][be-rust] | [//src/lib/fidl/rust/fidl/][rtl-rust] |
| Dart | [//topaz/bin/fidlgen_dart/][be-dart] | [//topaz//public/dart/fidl/][rtl-dart]<br>[//topaz/bin/fidl_bindings_test/][bindings_test-dart] |
| |
| ### Other FIDL Tools |
| |
| A number of FIDL tools are located in the [`fidl-misc` repo][fidl-misc]. To |
| clone this repo, run |
| |
| ```sh |
| git clone https://fuchsia.googlesource.com/fidl-misc |
| ``` |
| |
| It is then recommended to export the path to this directory, to make setting |
| aliases easier: |
| |
| ```sh |
| export FIDLMISC_DIR=... |
| ``` |
| |
| **TBD: linter, formatter, gidl, difl, regen scripts, etc.** |
| |
| ### Common Development Tools |
| |
| This is a crowdsourced section from the FIDL team on useful tools that they |
| use for working on the FIDL codebase. |
| |
| #### IDEs |
| |
| Most of the FIDL team uses VSCode for development. Some useful plugins and workflows: |
| |
| * The [remote ssh](https://code.visualstudio.com/docs/remote/ssh) feature works |
| really well for doing remote work from your laptop. |
| * Setting up tmux or screen is also helpful for remote work, to preserve |
| history and manage multiple sessions in the shell. |
| * The Fuchsia documentation has instructions for setting up language servers: |
| * [clangd](/docs/development/languages/c-cpp/editors.md) for c++ |
| * [rust-analyzer](/docs/development/languages/rust/editors.md) for rust |
| * The [rewrap extension](https://marketplace.visualstudio.com/items?itemName=stkb.rewrap) is useful |
| for automatically reflowing lines to a certain length (e.g. when editing markdown files). |
| * To get automatic syntax highlighting for the bindings golden files, update the |
| `file.associations` setting: |
| |
| ```json |
| "files.associations": { |
| "*.test.json.golden": "json", |
| "*.test.json.rs.golden": "rust", |
| "*.test.json.cc.golden": "cpp", |
| "*.test.json.h.golden": "cpp", |
| "*.test.json.llcpp.cc.golden": "cpp", |
| "*.test.json.llcpp.h.golden": "cpp", |
| "*.test.json.go.golden": "go", |
| "*.test.json_async.dart.golden": "dart", |
| "*.test.json_test.dart.golden": "dart" |
| }, |
| ``` |
| |
| ### C++ Style Guide |
| |
| We follow the [Fuchsia C++ Style Guide][cpp-style], with additional rules to |
| further remove ambiguity around the application or interpretation of guidelines. |
| |
| #### Constructors |
| |
| Always place the initializer list on a line below the constructor. |
| |
| ```cpp |
| // Don't do this. |
| SomeClass::SomeClass() : field_(1), another_field_(2) {} |
| |
| // Correct. |
| SomeClass::SomeClass() |
| : field_(1), another_field_(2) {} |
| ``` |
| |
| #### Comments |
| |
| Comments must respect 80 columns line size limit, unlike code which can extend |
| to 100 lines size limit. |
| |
| ##### Lambda captures |
| |
| * If a lambda escapes the current scope, capture all variables explicitly. |
| * If the lambda is local (does not escape the current scope), prefer using a default capture by |
| reference ("`[&]`"). |
| |
| Seeing `[&]` is a strong signal that the lambda exists within the current scope only, and can be |
| used to distinguish local from non-local lambdas. |
| |
| ```cpp |
| // Correct. |
| std::set<const flat::Library*, LibraryComparator> dependencies; |
| auto add_dependency = [&](const flat::Library* dep_library) { |
| if (!dep_library->HasAttribute("Internal")) { |
| dependencies.insert(dep_library); |
| } |
| }; |
| ``` |
| |
| ## General Setup |
| |
| ### Fuchsia Setup |
| |
| Read the [Fuchsia Getting Started][getting_started] guide first. |
| |
| ### fx set |
| |
| If you are working on the FIDL toolchain, use: |
| |
| ```sh |
| fx set core.x64 --with //bundles/fidl:tests --with //topaz/bundles/fidl:tests |
| ``` |
| |
| If you are working on an LSC: |
| |
| ```sh |
| fx set terminal.x64 --with //bundles:kitchen_sink \ |
| --with //topaz/packages/tests:all \ |
| --with //sdk:modular_testing |
| ``` |
| |
| ### symbolizer |
| |
| To symbolize backtraces, you'll need a symbolizer in scope: |
| |
| ```sh |
| HOST_PLATFORM=linux-x64 # or mac-x64 |
| export ASAN_SYMBOLIZER_PATH="$FUCHSIA_DIR/prebuilt/third_party/clang/$HOST_PLATFORM/bin/llvm-symbolizer" |
| ``` |
| |
| ## Compiling, and Running Tests |
| |
| We provide mostly one-liners to run tests for the various parts. |
| When in doubt, refer to the "`Test:`" comment in the git commit message; |
| we do our best to describe the commands used to validate our work there. |
| |
| Tests are run using the [fidldev][fidldev] tool. Examples assume that the |
| `fidldev` script is somewhere on your PATH, e.g. by adding an alias: |
| |
| ```sh |
| alias fidldev=$FIDLMISC_DIR/fidldev/fidldev.py |
| ``` |
| |
| ### fidlc |
| |
| ```sh |
| # optional; builds fidlc for the host with ASan <https://github.com/google/sanitizers/wiki/AddressSanitizer> |
| fx set core.x64 --variant=host_asan |
| |
| # build fidlc |
| fx ninja -C $(cat .fx-build-dir) host_x64/fidlc |
| ``` |
| |
| If you're doing extensive edit-compile-test cycles on `fidlc`, building with |
| fewer optimizations can make a significant difference in the build speed. To do |
| this, change the `optimization` setting in `zircon/public/gn/config/levels.gni` |
| from `default` to `debug` or `none`. |
| |
| Warning: The kernel is not regularly tested with `debug`, and only supports |
| `none` for building. Running with `none` can cause kernel panics from stack |
| overflows in the kernel. |
| |
| To avoid accidentally committing this change, run: |
| |
| ``` |
| git update-index --skip-worktree zircon/public/gn/config/levels.gni |
| ``` |
| |
| If you want to allow the changes to be committed again, run: |
| |
| ``` |
| git update-index --no-skip-worktree zircon/public/gn/config/levels.gni |
| ``` |
| |
| ### fidlc tests |
| |
| `fidlc` tests are at: |
| |
| * [//zircon/system/utest/fidl-compiler/][fidlc-compiler-tests]. |
| * [//src/lib/fidl/c/walker_tests/][walker-tests]. |
| * [//src/lib/fidl/c/coding_tables_tests/][fidlc-coding-tables-tests]. |
| * [//src/lib/fidl/c/simple_tests][fidl-simple] (C runtime tests). |
| |
| To build and run `fidlc` tests: |
| |
| ```sh |
| fidldev test fidlc |
| ``` |
| |
| To run a specific test case, use the `--case` flag with the fidlc test binary. |
| The binary can be located by running `fidldev test --dry-run --no-regen fidlc`. |
| |
| ```sh |
| $FUCHSIA_DIR/out/default/host_x64/fidl-compiler -- --case attributes_tests |
| ``` |
| |
| To regenerate the `fidlc` JSON goldens: |
| |
| ```sh |
| fidldev regen fidlc |
| ``` |
| |
| These "golden" files are examples of what kind of JSON IR `fidlc` produces and |
| are used to track changes. It is required to regenerate the golden files each |
| time the JSON IR is changed in any way, otherwise the `json_generator_tests` fails. |
| |
| ### fidlgen (LLCPP, HLCPP, Rust, Go) |
| |
| Build: |
| |
| ```sh |
| fx build tools/fidl |
| ``` |
| |
| Run: |
| |
| ```sh |
| $FUCHSIA_DIR/out/default/host_x64/fidlgen_{llcpp, hlcpp, rust, go} |
| ``` |
| |
| Some example tests you can run: |
| |
| ```sh |
| fx run-host-tests fidlgen_hlcpp_test |
| fx run-host-tests fidlgen_golang_ir_test |
| fidldev test --no-regen fidlgen |
| ``` |
| |
| To regenerate the goldens: |
| |
| ```sh |
| fidldev regen fidlgen |
| ``` |
| |
| ### fidlgen_dart |
| |
| Build: |
| |
| ```sh |
| fx ninja -C out/default host_x64/fidlgen_dart |
| ``` |
| |
| Run: |
| |
| ```sh |
| $FUCHSIA_DIR/out/default/host_x64/fidlgen_dart |
| ``` |
| |
| Some example tests you can run: |
| |
| ```sh |
| fidldev test --no-regen fidlgen_dart |
| ``` |
| |
| To regenerate the goldens: |
| |
| ```sh |
| fidldev regen fidlgen_dart |
| ``` |
| |
| ### Bindings |
| |
| `fidldev` supports tests for each of the bindings. Some of the bindings tests |
| run on device and require having Fuchsia running in an emulator. Here are the |
| steps: |
| |
| ```sh |
| Tab 1> fx build && fx serve-updates |
| |
| Tab 2> fx qemu -kN |
| ``` |
| |
| The `-k` flag enables KVM. It is not required, but the emulator is *much* slower |
| without it. The `-N` flag enables networking. |
| |
| The bindings tests can then be run with fidldev: |
| |
| ```sh |
| fidldev test --no-regen hlcpp |
| fidldev test --no-regen llcpp |
| fidldev test --no-regen c |
| fidldev test --no-regen go |
| fidldev test --no-regen rust |
| fidldev test --no-regen dart |
| ``` |
| |
| Alternatively, run fidldev with no arguments to test files that have changed: |
| |
| ```sh |
| fidldev test |
| ``` |
| |
| To run a specific test or to pass flags to a specific test, run `fidldev` with |
| the `--dry-run`, `--no-build`, `--no-regen` flags to obtain the desired test |
| commands. |
| |
| ### Compatibility Test |
| |
| Details about how the compatibility tests work and where the code is located can be |
| found in the README at [//src/tests/fidl/compatibility][compat_readme]. |
| |
| To run the compatibility tests, you first need to have Fuchsia running in an |
| emulator: |
| |
| ```sh |
| Tab 1> fx build && fx serve |
| |
| Tab 2> fx qemu -kN |
| |
| ``` |
| |
| To run the compatibility tests: |
| |
| ```sh |
| Tab 3> fx set core.x64 --with //src/tests/fidl/compatibility |
| Tab 3> fx test fidl-compatibility-test |
| ``` |
| |
| ### GIDL |
| |
| To rebuild GIDL: |
| |
| ```sh |
| fx build host-tools/gidl |
| ``` |
| |
| ### Measure Tape |
| |
| ``` |
| fx set core.x64 --with //tools/fidl/measure-tape/src:host |
| fx build |
| ``` |
| |
| ### All Tests |
| |
| #### Bindings Tests |
| |
| On device tests generally have greater coverage than host tests, due to support |
| for only running a subset of features on host. However, host tests can be |
| useful for debugging issues that prevent boot of the device. |
| |
| ##### On Device |
| |
| | Name | Test Command | Coverage |
| |--------------------------|-------------------------------------|--------------------------- |
| | c runtime test, coding tables | `fx test //src/lib/fidl/c` | //zircon/system/ulib/fidl | |
| | walker, misc | `fx test fidl-walker-tests` | //zircon/system/ulib/fidl |
| | walker tests w/ handle closing checks | `fx test fidl-handle-closing-tests` | //zircon/system/ulib/fidl |
| | hlcpp bindings tests including conformance tests | `fx test fidl-hlcpp-tests` | //sdk/lib/fidl | |
| | llcpp bindings tests | `fx test //src/lib/fidl/llcpp/tests` | //zircon/system/ulib/fidl/include/lib/fidl/llcpp |
| | go bindings tests | `fx test go_fidl_tests` | //third_party/go/syscall/zx/fidl third_party/go/syscall/zx/fidl/fidl_test | |
| | dart bindings tests | `fx test fidl_bindings_test` | //topaz/public/dart/fidl | |
| | rust bindings tests | `fx test fidl-rust-tests` | //src/lib/fidl/rust/fidl | |
| |
| ##### Host |
| |
| | Name | Test Command | Coverage |
| |--------------------------|-------------------------------------|--------------------------- |
| | walker, misc | `fx test --host fidl-walker-host-tests` | //zircon/system/ulib/fidl |
| | hlcpp unittests | `fx test --host fidl_cpp_host_unittests` | //sdk/lib/fidl |
| | hlcpp conformance tests | `fx test --host fidl_cpp_host_conformance_test` | //sdk/lib/fidl |
| | llcpp conformance tests | `fx test --host fidl_llcpp_conformance_test` | //zircon/system/ulib/fidl/include/lib/fidl/llcpp |
| | rust conformance tests | `fx test --host fidl_rust_conformance_tests` | //src/lib/fidl/rust |
| | rust fidl lib tests | `fx test --host fidl_rust_lib_tests` | //src/lib/fidl/rust |
| | go conformance tests | `fx test --host fidl_go_conformance_tests` | //third_party/go/syscall/zx/fidl |
| | go fidl tests (extended) | `fx test --host go_extended_fidl_test` | //third_party/go/syscall/zx/fidl |
| | go unsafevalue test | `fx test --host go_unsafevalue_test` | //third_party/go/syscall/zx/fidl/internal/unsafevalue |
| |
| #### Fidlgen Tests |
| |
| | Name | Test Command | Coverage |
| |--------------------------|-------------------------------------|--------------------------- |
| | fidlgen type definitions | `fx test fidlgen_types_test` | //garnet/go/src/fidl/compiler/backend/types | |
| | fidlgen hlcpp | `fx test fidlgen_hlcpp_test` | //tools/fidl/fidlgen_hlcpp | |
| | fidlgen llcpp | `fx test fidlgen_llcpp_test` | //tools/fidl/fidlgen_llcpp | |
| | fidlgen golang | `fx test fidlgen_go_test` | //tools/fidl/fidlgen_golang | |
| | fidlgen rust | `fx test fidlgen_rust_test` | //tools/fidl/fidlgen_rust | |
| | fidlgen syzkaller | `fx test fidlgen_syzkaller_test` | //tools/fidl/fidlgen_syzkaller | |
| | fidlgen dart | `fx test fidlgen_dart_backend_test` | //topaz/bin/fidlgen_dart |
| |
| #### Other |
| |
| | Name | Test Command | Coverage |
| |--------------------------|-------------------------------------|--------------------------- |
| | fidlc compiler | `fx test fidl-compiler` | //zircon/tools/fidl |
| | gidl parser | `fx test gidl_parser_test` | //tools/fidl/gidl/parser |
| | measure tape test | `fx test measure-tape_test` | //tools/fidl/measure-tape |
| |
| ### All Benchmarks |
| |
| Benchmarks can either be run directly or through one of two test runners: |
| fuchsia_benchmarks (old), SL4F (new). |
| |
| Benchmarks on chromeperf are currently generated through the fuchsia_benchmarks |
| runner but are transitioning to SL4F. |
| During this transition, benchmarks should be integrated in both systems. |
| |
| #### Directly running benchmarks |
| |
| Ensure that the benchmarks are included in your build: |
| |
| ``` |
| fx set core.x64 --with //src/tests/benchmarks |
| ``` |
| |
| You will need to `fx build` and restart `qemu` for the packages to be |
| available. |
| |
| Available benchmarks: |
| |
| | Name | Benchmark Command | Notes | |
| |------|-------------------|-------| |
| | Go Benchmarks | `fx shell /bin/go_fidl_microbenchmarks` | | |
| | Rust Benchmarks | `fx shell /bin/rust_fidl_microbenchmarks /tmp/myresultsfile` | Results can be viewed with `fx shell cat /tmp/myresultsfile/` | |
| | LLCPP benchmarks | `fx shell /bin/llcpp_fidl_microbenchmarks` | | |
| | lib/fidl Benchmarks | `fx shell /bin/lib_fidl_microbenchmarks` | | |
| | Roundtrip Benchmarks | `fx shell /bin/roundtrip_fidl_benchmarks` | | |
| |
| #### Running all benchmarks with SL4F benchmark runner |
| |
| This runs benchmarks the same way they are run on CQ. |
| SL4F requires the `terminal.x64` product. Use `fx set` to switch products: |
| |
| ``` |
| fx set terminal.x64 |
| ``` |
| |
| To run all FIDL tests, use: |
| |
| ``` |
| fx test --e2e fidl_microbenchmarks_test |
| ``` |
| |
| ### All Regen Commands |
| |
| | Name | Regen Commands | Input | Output | |
| |-----------------------|-----------------------------------------------------------------------------|-------------------------------------------------------------------|--------------------------------------------------------------------------------------------| |
| | fidlc goldens | fx exec $FUCHSIA_DIR/zircon/tools/fidl/testdata/regen.sh | zircon/tools/fidl/testdata | zircon/tools/fidl/goldens | |
| | fidlgen goldens | fx exec $FUCHSIA_DIR/garnet/go/src/fidl/compiler/backend/typestest/regen.sh | zircon/tools/fidl/goldens | garnet/go/src/fidl/compiler/backend/goldens | |
| | dart fidlgen goldens | fx exec $FUCHSIA_DIR/topaz/bin/fidlgen_dart/regen.sh | zircon/tools/fidl/goldens | topaz/bin/fidlgen_dart/goldens | |
| | dangerous identifiers | fx exec src/tests/fidl/dangerous_identifiers/generate.py | src/tests/fidl/dangerous_identifiers/dangerous_identifiers.txt | src/tests/fidl/dangerous_identifiers/{cpp, fidl} | |
| | regen third party go | fx exec $FUCHSIA_DIR/third_party/go/regen-fidl | | | |
| | fidldoc goldens | REGENERATE_GOLDENS_FOLDER=$FUCHSIA_DIR/tools/fidl/fidldoc/src/templates/markdown/testdata fx test host_x64/fidldoc_bin_test -- golden_test | zircon/tools/fidl/goldens | tools/fidl/fidldoc/src/templates/markdown/testdata | |
| |
| ### Compiling with `ninja` |
| |
| In some cases, GN can build many unneeded targets. You can build a specific target with `ninja` instead of GN. In most cases, you can `grep` for the binary name to determine the `ninja` invocation. |
| |
| For example, you can `grep` for `fidlgen_dart`: |
| |
| ```sh |
| fx ninja -C out/default -t targets all | grep -e 'fidlgen_dart:' |
| ``` |
| |
| This example outputs a list of ninja targets which includes `host_x64/fidlgen_dart`. Therefore, to |
| build `fidlgen_dart` run the following ninja command: |
| |
| ```sh |
| fx ninja -C out/default host_x64/fidlgen_dart |
| ``` |
| |
| ## Debugging (host) |
| |
| There are several ways of debugging issues in host binaries. This section gives |
| instructions for the example case where `fidlc --files test.fidl` is crashing: |
| |
| - [GDB](#GDB) |
| - [Asan](#ASan) |
| - [Valgrind](#Valgrind) |
| |
| Note: Even with all optimizations turned off, the binaries in |
| `out/default/host_x64` are stripped. For debugging, you should use the binaries |
| with the `.debug` suffix, such as |
| `out/default.zircon/host-x64-linux-clang/obj/tools/fidl/fidlc.debug`. |
| |
| ### GDB {#GDB} |
| |
| Start GDB: |
| |
| ```sh |
| gdb --args out/default.zircon/host-x64-linux-clang/obj/tools/fidl/fidlc.debug --files test.fidl |
| ``` |
| |
| Then, enter "r" to start the program. |
| |
| ### ASan {#ASan} |
| |
| Ensure you are compiling with ASan enabled: |
| |
| ```sh |
| fx set core.x64 --variant=host_asan |
| fx build host_x64/fidlc |
| ``` |
| |
| Then run `out/default/host_x64/fidlc --files test.fidl`. That binary should be |
| the same as `out/default.zircon/host-x64-linux-asan/obj/tools/fidl/fidlc`. |
| |
| ### Valgrind {#Valgrind} |
| |
| On Google Linux machines, you may need to install a standard version of Valgrind |
| instead of using the pre-installed binary: |
| |
| ``` |
| sudo apt-get install valgrind |
| ``` |
| |
| Then: |
| |
| ```sh |
| valgrind -v -- out/default.zircon/host-x64-linux-clang/obj/tools/fidl/fidlc.debug --files test.fidl |
| ``` |
| |
| ## Workflows |
| |
| ### Language evolutions |
| |
| One common task is to evolve the language, or introduce stricter checks in `fidlc`. |
| These changes typically follow a three phase approach: |
| |
| 1. Write the new compiler code in `fidlc`; |
| 2. Use this updated `fidlc` to compile all layers, |
| including vendor/google, make changes as needed; |
| 3. When all is said and done, the `fidlc` changes can finally be merged. |
| |
| All of this assumes that (a) code which wouldn't pass the new checks, or (b) code |
| that has new features, is *not* introduced concurrently between step 2 and step 3. |
| That typically is the case, however, it is ok to deal with breaking rollers |
| once in a while. |
| |
| ### Go fuchsia.io and fuchsia.net |
| |
| To update all the saved `fidlgen` files, run the following command, |
| which automatically searches for and generates the necessary go files: |
| |
| ```sh |
| fx exec third_party/go/regen-fidl |
| ``` |
| |
| ## FAQs |
| |
| ### Why is the C back-end different than all other back-ends? |
| |
| TBD |
| |
| ### Why is fidlc in the zircon repo? |
| |
| TBD |
| |
| ### Why aren't all back-ends in one tool? |
| |
| We'd actually like all back-ends to be in _separate_ tools! |
| |
| Down the road, we plan to have a script over all the various tools (`fidlc`, |
| `fidlfmt`, the various back-ends) to make all things accessible easily, |
| and manage the chaining of these things. |
| For instance, it should be possible to generate Go bindings in one command such as: |
| |
| ```sh |
| fidl gen --library my_library.fidl --binding go --out-dir go/src/my/library |
| ``` |
| |
| Or format a library in place with: |
| |
| ```sh |
| fidl fmt --library my_library.fidl -i |
| ``` |
| |
| <!-- xrefs --> |
| [fidl-readme]: /docs/development/languages/fidl |
| [cpp-style]: /docs/development/languages/c-cpp/cpp-style.md |
| [be-c]: /zircon/tools/fidl/lib/c_generator.cc |
| [be-hlcpp]: /tools/fidl/fidlgen_hlcpp/ |
| [be-dart]: https://fuchsia.googlesource.com/topaz/+/master/bin/fidlgen_dart/ |
| [be-go]: /tools/fidl/fidlgen_go/ |
| [be-rust]: /tools/fidl/fidlgen_rust/ |
| [bindings_test-dart]: https://fuchsia.googlesource.com/topaz/+/master/bin/fidl_bindings_test |
| [fidlc-source]: /zircon/tools/fidl/ |
| [fidlc-coding-tables-tests]: /src/lib/fidl/c/coding_tables_tests/ |
| [fidl-simple]: /src/lib/fidl/c/simple_tests/ |
| [fidlc-compiler-tests]: /zircon/system/utest/fidl-compiler/ |
| [walker-tests]: /src/lib/fidl/c/walker_tests/ |
| [jsonir]: /docs/reference/fidl/language/json-ir.md |
| [rtl-c]: /zircon/system/ulib/fidl/ |
| [rtl-cpp]: /src/lib/fidl/llcpp/tests/ |
| [rtl-dart]: https://fuchsia.googlesource.com/topaz/+/master/public/dart/fidl/ |
| [rtl-go]: https://fuchsia.googlesource.com/third_party/go/+/master/src/syscall/zx/fidl/ |
| [rtl-rust]: /src/lib/fidl/rust/fidl/ |
| [getting_started]: /docs/get-started/index.md |
| [compat_readme]: /src/tests/fidl/compatibility/README.md |
| [go-test-flags]: https://golang.org/cmd/go/#hdr-Testing_flags |
| [fidl-misc]: https://fuchsia.googlesource.com/fidl-misc |
| [fidldev]: https://fuchsia.googlesource.com/fidl-misc/+/refs/heads/master/fidldev |