summaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2025-04-02 09:19:41 -0700
committerDylan Baker <dylan@pnwbakers.com>2025-04-08 10:00:16 -0700
commit9d1837e1afc919d18645c8fd6788cf44ac7d078d (patch)
treeef79e6e1079b4a570cd836744a098941533b09fa /test cases
parent768712cf32e82ee9e82e6d567f2a39677b48e46c (diff)
downloadmeson-9d1837e1afc919d18645c8fd6788cf44ac7d078d.tar.gz
tests: Add a rewriter test that handles prefix
"prefix" has a lot of special handling that has to go on because so many other options depend on prefix. It was also regressed by the option refactor changes, so having a test feels appropriate. This was verified against the 1.7 release, so it has the same behavior as pre-option refactor Meson.
Diffstat (limited to 'test cases')
-rw-r--r--test cases/rewrite/7 prefix/meson.build5
1 files changed, 5 insertions, 0 deletions
diff --git a/test cases/rewrite/7 prefix/meson.build b/test cases/rewrite/7 prefix/meson.build
new file mode 100644
index 000000000..563d7d7c9
--- /dev/null
+++ b/test cases/rewrite/7 prefix/meson.build
@@ -0,0 +1,5 @@
+project('lalala', 'cpp',
+ default_options : [
+ 'prefix=/export/doocs',
+ ],
+)