Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Docs] Added tools to directory structure #4504

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,14 @@ p4c
├── test -- test code
│ └── gtest -- unit test code written using gtest
├── tools -- external programs used in the build/test process
│ ├── ci-ptf -- scripts to run PSA PTF tests
│ ├── debian-build -- resources and scripts for creating Ubuntu (or Debian) packages
│ ├── driver -- p4c compiler driver: a script that invokes various compilers
│ ├── stf -- Python code to parse STF files (used for testing P4 programs)
| └── ir-generator -- code for the IR C++ class hierarchy generator
│ ├── hooks -- useful git hooks for development
| ├── ir-generator -- code to generate the P4C IR from .def files
│ ├── iwyu_mappings -- mappings used by the Include What You Use (IWYU) tool for analyzing #include directives in C and C++ source files
│ ├── ptf -- utilities for the Packet Test Framework (PTF)
│ └── stf -- utilities for the Simple Test Framework (STF)
└── testdata -- test inputs and reference outputs
├── p4_16_samples -- P4_16 input test programs
├── p4_16_errors -- P4_16 negative input test programs
Expand Down
Loading