From f489addddeb33368b661fece91b00750bbba52b3 Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Wed, 14 Feb 2018 14:08:15 +0000 Subject: [PATCH] Update `rtf run` invocations use of `-x` flag This applies the transformation implied by https://github.com/linuxkit/rtf/commit/bfabb8a38222c40821549419e6af73434596049f which is an update required by https://github.com/linuxkit/rtf/commit/3f574c7adbae86e79c475d6358828e82de4d4d1f. Signed-off-by: Ian Campbell --- README.md | 6 +++--- docs/testing.md | 6 +++--- test/Makefile | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 576e949ff..bc381a48b 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ To run the test suite: ``` cd test -rtf -x run +rtf -v run -x ``` This will run the tests and put the results in a the `_results` directory! @@ -115,13 +115,13 @@ Run control is handled using labels and with pattern matching. To run add a label you may use: ``` -rtf -x -l slow run +rtf -v -l slow run -x ``` To run tests that match the pattern `linuxkit.examples` you would use the following command: ``` -rtf -x run linuxkit.examples +rtf -v run -x linuxkit.examples ``` ## Building your own customised image diff --git a/docs/testing.md b/docs/testing.md index 5060a8ac0..255f2aab6 100644 --- a/docs/testing.md +++ b/docs/testing.md @@ -12,7 +12,7 @@ To run the test suite: ``` cd test -rtf -x run +rtf -v run -x ``` This will run the tests and put the results in a the `_results` directory! @@ -21,7 +21,7 @@ Run control is handled using labels and with pattern matching. To run add a label you may use: ``` -rtf -x -l slow run +rtf -v -l slow run -x ``` You can list the tests which will be run using: @@ -35,7 +35,7 @@ Some tests may be marked as `SKIP` and `LABELS` column will typically provide an To run tests that match the pattern `linuxkit.build` you would use the following command: ``` -rtf -x run linuxkit.build +rtf -v run -x linuxkit.build ``` ### Writing new tests diff --git a/test/Makefile b/test/Makefile index 0164629be..96edb2e19 100644 --- a/test/Makefile +++ b/test/Makefile @@ -43,7 +43,7 @@ ltp: $(LINUXKIT) test-ltp.img.tar.gz ### ------ test: gcp-hack - @rtf -l build -x run + @rtf -l build -v run -x test-pr: gcp-hack - @rtf -l build -x run + @rtf -l build -v run -x