From 041f2b3d3af1aa3da05ed859f8c79b28844ad0af Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 18 Jun 2024 07:44:46 +0300 Subject: [PATCH] tools: fix measurements for `./v repeat "./vold -o x project/" "./vnew -o x project/"` --- cmd/tools/vrepeat.v | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/tools/vrepeat.v b/cmd/tools/vrepeat.v index 0677a3f2c9..6087e5dc6d 100644 --- a/cmd/tools/vrepeat.v +++ b/cmd/tools/vrepeat.v @@ -387,6 +387,9 @@ fn (mut context Context) parse_options() ! { } fn main() { + // Make sure that we can measure various V executables + // without influencing them, by presetting VEXE + os.setenv('VEXE', '', true) mut context := Context{} context.parse_options()! context.run()