From c2a9de15f5d9477c6f1c143ed8265f71fdb04584 Mon Sep 17 00:00:00 2001 From: Dominik Schloesser Date: Sun, 26 Mar 2017 09:21:13 +0200 Subject: [PATCH] Updated samples: record-it.sh is now record-test.sh --- test/shaping/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/shaping/README.md b/test/shaping/README.md index bf0990942..a581a3435 100644 --- a/test/shaping/README.md +++ b/test/shaping/README.md @@ -14,7 +14,7 @@ FontTools from . To use `record-test.sh`, just put it right before the `hb-shape` invocation: ```sh -$ ./hb-unicode-encode 41 42 43 627 | ./record-it.sh ../../util/hb-shape font.ttf +$ ./hb-unicode-encode 41 42 43 627 | ./record-test.sh ../../util/hb-shape font.ttf ``` what this does is: * Subset the font for the sequence of Unicode characters requested, @@ -27,7 +27,7 @@ what this does is: and prints out the test case input, which you can then redirect to an existing or new test file in `tests`, eg.: ```sh -$ ./hb-unicode-encode 41 42 43 627 | ./record-it.sh ../../util/hb-shape font.ttf >> tests/test-name.test +$ ./hb-unicode-encode 41 42 43 627 | ./record-test.sh ../../util/hb-shape font.ttf >> tests/test-name.test ``` If you created a new test file, add it to `Makefile.am` so it is run.