From 20a7f088cea4df658ed66b17153148b75e64881e Mon Sep 17 00:00:00 2001 From: Andrea Pappacoda Date: Fri, 20 Oct 2023 23:58:06 +0200 Subject: [PATCH] build(meson): copy 1MB.txt test file (#1695) Since tests are run in the build directory, the 1MB.txt file has to be copied there. --- test/www/dir/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/test/www/dir/meson.build b/test/www/dir/meson.build index 8339b63..e88ec79 100644 --- a/test/www/dir/meson.build +++ b/test/www/dir/meson.build @@ -5,3 +5,4 @@ configure_file(input: 'index.html', output: 'index.html', copy: true) configure_file(input: 'test.abcde', output: 'test.abcde', copy: true) configure_file(input: 'test.html', output: 'test.html', copy: true) +configure_file(input: '1MB.txt', output: '1MB.txt', copy: true)