Skip to content

Commit 4734935

Browse files
singalsulgirdwood
authored andcommitted
Tools: Test: Audio: Fix tdfb_test.m for moved paths
This patch fixes the path to the data files needed for the beamformer component test. Without this none of the tests can run. Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
1 parent b9f3967 commit 4734935

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tools/test/audio/tdfb_test.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ function tdfb_test()
99
% determine. So far only visual check enabled.
1010

1111
% SPDX-License-Identifier: BSD-3-Clause
12-
% Copyright(c) 2020 Intel Corporation. All rights reserved.
12+
% Copyright(c) 2020-2025 Intel Corporation.
1313
% Author: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
1414

1515
% General settings
1616
cfg.delete_files = 1;
1717
cfg.do_plots = 1;
18-
cfg.tunepath = '../../tune/tdfb/data';
18+
cfg.tunepath = '../../../src/audio/tdfb/tune/data';
1919

2020
% Arrays to test. Since the two beams configurations are merge of two designs (pm90deg)
2121
% need to specify a compatible data file identifier for a single beam design (az0el0deg)
@@ -25,7 +25,7 @@ function tdfb_test()
2525
%% Prepare
2626
addpath('std_utils');
2727
addpath('test_utils');
28-
addpath('../../tune/tdfb');
28+
addpath('../../../src/audio/tdfb/tune');
2929

3030
for i = 1:length(array_data_list)
3131

0 commit comments

Comments
 (0)