aboutsummaryrefslogtreecommitdiff
path: root/test cases/failing/35 project argument after target
AgeCommit message (Collapse)AuthorFilesLines
2020-04-30Add expected stdout for failing-meson and warning-meson testsJon Turney1-0/+7
Initially produced using: for d in "test cases/failing/"* ; do rm -r _build ; ./meson.py setup "$d" _build | grep ERROR >"$d"/expected_stdout.txt; done then converted to json with jq using: jq --raw-input --slurp 'split("\n") | {stdout: map({line: select(. != "")})}' expected_stdout.txt >test.json or merged with existing json using: jq --slurp '.[0] + .[1]' test.json expected.json >test.json.new v2: Add some comments to explain the match when it isn't totally obvious v3: Add or adjust existing re: in expected output to handle '/' or '\' path separators appearing in message, not location. v4: Put expected stdout in test.json, rather than a separate expected_stdout.txt file Park comments in an unused 'comments' key, as JSON doesn't have a syntax for comments
2018-07-31Condense test dirs.Jussi Pakkanen2-0/+10
2016-11-14Rename test cases to remove duplicate numbers.Elliott Sales de Andrade2-10/+0
2016-11-12Add new add_project_[link]_args functionsThibault Saunier2-0/+10
Fixes 979