diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2022-02-24 14:18:14 -0800 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2023-06-07 19:20:30 -0700 |
| commit | 4017dab4847da392f7eb1dcdc2cb07bd69eb7863 (patch) | |
| tree | 049f62df4e0898a35b1069e4243748f7d37b8c9e /run_unittests.py | |
| parent | 5e59e5a9e49e9eee4e551f4078f32edd67659da4 (diff) | |
| download | meson-4017dab4847da392f7eb1dcdc2cb07bd69eb7863.tar.gz | |
cargo/cfg: Add a parser for the rust/cargo cfg() expressions
This uses a recursive descent parser + lexer to create an IR from cfg()
expressions, which it then converts into meson IR.
Diffstat (limited to 'run_unittests.py')
| -rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py index a820acc06..4dd674d34 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -36,7 +36,7 @@ from mesonbuild.mesonlib import python_command, setup_vsenv import mesonbuild.modules.pkgconfig from unittests.allplatformstests import AllPlatformTests -from unittests.cargotests import CargoVersionTest +from unittests.cargotests import CargoVersionTest, CargoCfgTest from unittests.darwintests import DarwinTests from unittests.failuretests import FailureTests from unittests.linuxcrosstests import LinuxCrossArmTests, LinuxCrossMingwTests |
