From 3356fdac9a9354ced5330d1e6e6b66846f1f2568 Mon Sep 17 00:00:00 2001 From: An Date: Fri, 27 Mar 2026 21:29:41 -0700 Subject: [PATCH] docs: add Automated Tests section to basic and basic_tunnel READMEs Signed-off-by: An --- exercises/basic/README.md | 6 ++++++ exercises/basic_tunnel/README.md | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/exercises/basic/README.md b/exercises/basic/README.md index 3d4f83e9..3ce2263b 100644 --- a/exercises/basic/README.md +++ b/exercises/basic/README.md @@ -189,6 +189,12 @@ make stop Congratulations, your implementation works! Move onto the next assignment [Basic Tunneling](../basic_tunnel) +## Automated Tests + +These tests are maintained to support CI/CD and help contributors verify +that the solution continues to work correctly across changes. PTF tests +are located in the `ptf/` directory and run against the solution program. + ## Relevant Documentation The documentation for P4_16 and P4Runtime is available [here](https://p4.org/specifications/) diff --git a/exercises/basic_tunnel/README.md b/exercises/basic_tunnel/README.md index a04ffdb4..ed6d7df9 100644 --- a/exercises/basic_tunnel/README.md +++ b/exercises/basic_tunnel/README.md @@ -193,6 +193,12 @@ make stop Congratulations, your implementation works! Move onto the next assignment [p4runtime](../p4runtime)! +## Automated Tests + +These tests are maintained to support CI/CD and help contributors verify +that the solution continues to work correctly across changes. PTF tests +are located in the `ptf/` directory and run against the solution program. + ## Relevant Documentation Documentation on the Usage of Gateway (gw) and ARP Commands in topology.json is [here](https://github.com/p4lang/tutorials/tree/master/exercises/basic#the-use-of-gateway-gw-and-arp-commands-in-topologyjson)