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 2 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 install VM and run tests in CI environment
│ ├── debian-build -- resouces and scripts for creating Ubuntu (or Debian) packages
AdarshRawat1 marked this conversation as resolved.
Show resolved Hide resolved
│ ├── 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 -- Contains git hooks
| ├── ir-generator -- code for the IR C++ class hierarchy generator
│ ├── iwyu_mappings -- mappings used by the Include What You Use (IWYU) tool for analyzing #include directives in C and C++ source files
│ ├── ptf -- includes PTF tests used to validate the P4 Runtime implementation on a single-device
│ └── stf -- Python code to parse STF files (used for testing P4 programs)
AdarshRawat1 marked this conversation as resolved.
Show resolved Hide resolved
└── 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