| 1 | import os |
| 2 | |
| 3 | const exe = os.find_abs_path_of_executable('my_exe') or { |
| 4 | eprintln('skipping test, since `my_exe` is missing') |
| 5 | exit(0) |
| 6 | } |
| 7 | const exe_quoted = os.quoted_path(os.find_abs_path_of_executable('my_exe') or { |
| 8 | eprintln('skipping test, since `my_exe` is missing') |
| 9 | exit(0) |
| 10 | }) |
| 11 | const single_line_test_path = os.join_path(os.vtmp_dir(), 'my_test_path') |
| 12 |