|
@@ -77,8 +77,9 @@ async def on_parser_modified():
|
|
|
|
|
|
async def on_checker_modified():
|
|
async def on_checker_modified():
|
|
print(datetime.now(), colored("run checker tests...", "yellow"))
|
|
print(datetime.now(), colored("run checker tests...", "yellow"))
|
|
- stdout, stderr = await run_and_output('xmake', 'run', "sql-checker", "-f", "test.cpp", "-g", "2")
|
|
|
|
|
|
+ stdout, stderr = await run_and_output('xmake', 'run', "sql-checker")
|
|
print(stdout.decode("utf-8"))
|
|
print(stdout.decode("utf-8"))
|
|
|
|
+ print(stderr.decode("utf-8"))
|
|
print(datetime.now(), colored("all checker tests right!", "green"))
|
|
print(datetime.now(), colored("all checker tests right!", "green"))
|
|
|
|
|
|
|
|
|