mirror of
https://github.com/AdaCore/langkit.git
synced 2026-02-12 12:28:12 -08:00
15 lines
344 B
Python
15 lines
344 B
Python
from drivers.base_driver import BaseDriver
|
|
|
|
|
|
class LktParseDriver(BaseDriver):
|
|
"""
|
|
Driver to run the "lkt_parse" test program on the "test.lkt" file.
|
|
"""
|
|
|
|
def run(self):
|
|
self.run_and_check(
|
|
["lkt_parse", "-f", "test.lkt"],
|
|
memcheck=self.memcheck_for_lkt,
|
|
for_coverage=True,
|
|
)
|