(params, expected_error_line)
| 10 | import BoostBuild |
| 11 | |
| 12 | def test_invalid(params, expected_error_line): |
| 13 | t = BoostBuild.Tester(pass_toolset=0) |
| 14 | t.write("file.jam", "SPLIT_BY_CHARACTERS %s ;" % params) |
| 15 | t.run_build_system(["-ffile.jam"], status=1) |
| 16 | t.expect_output_lines("[*] %s" % expected_error_line) |
| 17 | t.cleanup() |
| 18 | |
| 19 | def test_valid(): |
| 20 | t = BoostBuild.Tester(pass_toolset=0) |
no test coverage detected