From a7320ddd4ba709861f74c583a44a4de8ce42a6a3 Mon Sep 17 00:00:00 2001 From: Stanca Pop Date: Wed, 22 Jan 2025 17:40:23 +0200 Subject: [PATCH] Update BSPTestsBase to use vivado path from env --- test/BSPTestsBase.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/BSPTestsBase.m b/test/BSPTestsBase.m index 6e4f37f..2a695d2 100644 --- a/test/BSPTestsBase.m +++ b/test/BSPTestsBase.m @@ -160,7 +160,7 @@ function setVivadoPath(~,vivado) if ispc pathname = ['C:\Xilinx\Vivado\',vivado,'\bin\vivado.bat']; elseif isunix - pathname = ['/emea/mediadata/opt/Xilinx/Vivado/',vivado,'/bin/vivado']; + pathname = getenv('vivado_settings_path'); end end assert(exist(pathname,'file')>0,'Correct version of Vivado is unavailable or in a non-standard location'); @@ -203,4 +203,4 @@ function testMain(testCase, configs, SynthesizeDesign) end end end -end \ No newline at end of file +end