From 01453c733cfb9c5a2531fd9854f5e88d036fd8f0 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Mon, 4 Nov 2024 23:12:47 +0100 Subject: [PATCH] testsuite: Rename "diff" test to "not-diff" 3 things you need to know about this change: 1. We use diff(1) in various tests to check generated text against reference output 2. Windows locates executables not just in $PATH, it also looks in $cwd and the directory of the current process' binary 3. Multiple tests live together in the same directory Windows is fun. --- testsuite/gsk/meson.build | 2 +- testsuite/gsk/{diff.c => not-diff.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename testsuite/gsk/{diff.c => not-diff.c} (100%) diff --git a/testsuite/gsk/meson.build b/testsuite/gsk/meson.build index 5eb636f1cf..00e7a05976 100644 --- a/testsuite/gsk/meson.build +++ b/testsuite/gsk/meson.build @@ -570,8 +570,8 @@ internal_tests = [ [ 'boundingbox'], [ 'curve', [ ], [ 'flaky' ]], [ 'curve-special-cases' ], - [ 'diff' ], [ 'half-float' ], + [ 'not-diff' ], [ 'misc'], [ 'path-private' ], [ 'rounded-rect'], diff --git a/testsuite/gsk/diff.c b/testsuite/gsk/not-diff.c similarity index 100% rename from testsuite/gsk/diff.c rename to testsuite/gsk/not-diff.c