From ea04d23e1d42abc001d467eb00b67f6ccf5aeedf Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 28 Nov 2020 15:53:08 +0100 Subject: [PATCH] tests: valgrind: use -autofree without -experimental --- vlib/v/tests/valgrind/valgrind_test.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/tests/valgrind/valgrind_test.v b/vlib/v/tests/valgrind/valgrind_test.v index 71e3d8fa5d..a0af9738b9 100644 --- a/vlib/v/tests/valgrind/valgrind_test.v +++ b/vlib/v/tests/valgrind/valgrind_test.v @@ -74,7 +74,7 @@ fn test_all() { // exe_filename := '$wrkdir/x' full_path_to_source_file := os.join_path(vroot, test) - compile_cmd := '$vexe -o $exe_filename -cg -cflags "-w" -experimental -autofree "$full_path_to_source_file"' + compile_cmd := '$vexe -o $exe_filename -cg -cflags "-w" -autofree "$full_path_to_source_file"' vprintln('compile cmd: ${util.bold(compile_cmd)}') res := os.exec(compile_cmd) or { bench.fail()