We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1571645 commit 587fb72Copy full SHA for 587fb72
vlib/v/pref/pref_test.v
@@ -32,14 +32,7 @@ fn test_version_flag() {
32
assert v_verbose_cmd_res != v_ver_cmd_res
33
assert v_verbose_cmd_res.contains('v.pref.lookup_path:')
34
35
- // tcc does not handle the symver assembly directive which is
36
- // a problem on FreeBSD 14
37
- mut compiler := 'tcc'
38
- $if freebsd && clang {
39
- compiler = 'clang'
40
- }
41
-
42
- v_verbose_cmd_with_additional_args_res := os.execute_opt('${vexe} -cc ${compiler} -v run ${example_path}')!.output
+ v_verbose_cmd_with_additional_args_res := os.execute_opt('${vexe} -g -v run ${example_path}')!.output
43
assert v_verbose_cmd_with_additional_args_res != v_ver_cmd_res
44
assert v_verbose_cmd_with_additional_args_res.contains('v.pref.lookup_path:')
45
}
0 commit comments