v2 / vlib / v / tests / project_issue_15811_check_test.v
9 lines · 7 sloc · 300 bytes · 17228e2121f47dd31e6d5845c98680234fc29c64
Raw
1import os
2
3const vexe = os.quoted_path(@VEXE)
4const issue_15811_project = os.join_path(os.dir(@FILE), 'project_issue_15811')
5
6fn test_private_c_redeclaration_order_checks_cleanly() {
7 res := os.execute('${vexe} -check ${os.quoted_path(issue_15811_project)}')
8 assert res.exit_code == 0, res.output
9}
10