summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.am2
-rw-r--r--test/README2
-rw-r--r--test/dash-offset.c2
-rw-r--r--test/glyph-cache-pressure.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index 0a367806..b5bdabfc 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -164,7 +164,7 @@ reference
# convert degenerate segments into circles/rectangles
# as expected by cairo
# device-offset-scale - complication of pre-multiplying device_offset
-# into the pattern_matrix and then requiring futher
+# into the pattern_matrix and then requiring further
# manipulation for SVG
# extend-pad - lacks implementation in pixman and consequently used
# as an excuse for lack of support in other backends
diff --git a/test/README b/test/README
index 28f47477..b8effea9 100644
--- a/test/README
+++ b/test/README
@@ -57,7 +57,7 @@ this is interfering with the results, you can clear the cached results using:
make clean-caches
-Running tests under modified enviroments or tools
+Running tests under modified environments or tools
-------------------------------------------------
To run tests under a tool like gdb, one can use the run target and
the TOOL variable. For example:
diff --git a/test/dash-offset.c b/test/dash-offset.c
index 0e536870..f4269ee1 100644
--- a/test/dash-offset.c
+++ b/test/dash-offset.c
@@ -37,7 +37,7 @@ static const double frac_offset[] = { 0, 2, 4, 6 };
* This corresponds to the non-inverted part only if
* the dash pattern has odd length, so the expected result
* is the same for every int_offset if the pattern has
- * even lenght, and inverted each time (or shifted by half
+ * even length, and inverted each time (or shifted by half
* period, which is the same) if the pattern has odd length. */
static const double int_offset[] = { -2, -1, 0, 1, 2 };
diff --git a/test/glyph-cache-pressure.c b/test/glyph-cache-pressure.c
index 770b39fd..eb4f7c5c 100644
--- a/test/glyph-cache-pressure.c
+++ b/test/glyph-cache-pressure.c
@@ -38,7 +38,7 @@
* https://bugs.freedesktop.org/show_bug.cgi?id=6955
*
* We replicate this bug by using the cairo_scaled_font_set_max_glyphs_per_font
- * function to artifically induce cache pressure. (This function was added
+ * function to artificially induce cache pressure. (This function was added
* for this very purpose.)
*
* 2006-06-22 Carl Worth <cworth@cworth.org>