diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2022-06-16 12:35:12 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2022-06-16 15:45:12 +0300 |
commit | 74f793789c96b91fec365f813efce234b92e2c03 (patch) | |
tree | 953aabc1c86645cfa41b1a8680976b4f4a4b14ce /tests/pkg-build.testscript | |
parent | 399c4e544367cb621af46cb40fa95355cf4df0f0 (diff) |
Fix testscript output match of non-deterministic variables order in diagnostics
Diffstat (limited to 'tests/pkg-build.testscript')
-rw-r--r-- | tests/pkg-build.testscript | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/pkg-build.testscript b/tests/pkg-build.testscript index 243a0a7..4fe2aa4 100644 --- a/tests/pkg-build.testscript +++ b/tests/pkg-build.testscript @@ -11983,11 +11983,16 @@ test.options += --no-progress { $clone_cfg; - $* baz 2>>EOE != 0; + $* baz 2>>~%EOE% != 0; error: unable to remove bogus configuration values without causing configuration refinement cycle info: consider manually specifying one or more of the following variables as user configuration + %( config.liba.buffer=2048 config.liba.x=true + %| + config.liba.x=true + config.liba.buffer=2048 + %) EOE $* baz ?liba +{ config.liba.x=true } 2>>~%EOE%; |