iptables: add instructions for runsc building.

The readme didn't mention that users need to:
- `bazel build` when working on iptables tests
- enable raw sockets in /etc/docker/daemon.json.

PiperOrigin-RevId: 294260169
This commit is contained in:
Kevin Krakauer
2020-02-10 11:09:19 -08:00
committed by gVisor bot
parent a03b40ca17
commit 31f2182cd3
+11 -1
View File
@@ -2,6 +2,9 @@
iptables tests are run via `scripts/iptables_test.sh`.
iptables requires raw socket support, so you must add the `--net-raw=true` flag
to `/etc/docker/daemon.json` in order to use it.
## Test Structure
Each test implements `TestCase`, providing (1) a function to run inside the
@@ -25,7 +28,14 @@ Your test is now runnable with bazel!
## Run individual tests
Build the testing Docker container:
Build and install `runsc`. Re-run this when you modify gVisor:
```bash
$ bazel build //runsc && sudo cp bazel-bin/runsc/linux_amd64_pure_stripped/runsc $(which runsc)
```
Build the testing Docker container. Re-run this when you modify the test code in
this directory:
```bash
$ bazel run //test/iptables/runner:runner-image -- --norun