File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ coverage_suite_internal: install_all_internal
228
228
@echo " packaging test-coverage suite"
229
229
@rm -rf $(INSTALL_PATH ) /coverage-suite.tar.gz
230
230
@find Product -name " *.gcno" > include_lists.txt
231
- @pwd | grep -o ' /' | wc -l > tests/scripts/build_path_depth.txt
231
+ @pwd | grep -o ' /' | wc -l > runtime/ tests/scripts/build_path_depth.txt
232
232
@tar -zcf coverage-suite.tar.gz tests/scripts infra Product/out --dereference -T include_lists.txt
233
- @rm -rf include_lists.txt tests/scripts/build_path_depth.txt
233
+ @rm -rf include_lists.txt runtime/ tests/scripts/build_path_depth.txt
234
234
@mv coverage-suite.tar.gz $(INSTALL_PATH ) /.
Original file line number Diff line number Diff line change @@ -18,11 +18,11 @@ tar -zxf ${ARCHIVE_PATH}/coverage-suite.tar.gz -C ./
18
18
19
19
CheckTestPrepared
20
20
21
- if [[ ! -e $ROOT_PATH /tests/scripts/build_path_depth.txt ]]; then
21
+ if [[ ! -e $ROOT_PATH /runtime/ tests/scripts/build_path_depth.txt ]]; then
22
22
echo " Cannot find prefix strip file"
23
23
exit 1
24
24
fi
25
- export GCOV_PREFIX_STRIP=` cat $ROOT_PATH /tests/scripts/build_path_depth.txt`
25
+ export GCOV_PREFIX_STRIP=` cat $ROOT_PATH /runtime/ tests/scripts/build_path_depth.txt`
26
26
27
27
TENSOR_LOGGING=trace_log.txt ./infra/scripts/test_ubuntu_runtime.sh --backend acl_cl --nnapi-frontend
28
28
./infra/scripts/test_ubuntu_runtime.sh --backend acl_neon
Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ cp -r %{nncc_workspace}/overlay/include/flatbuffers %{overlay_path}/include
212
212
213
213
%if %{test_build } == 1
214
214
%if %{coverage_build } == 1
215
- pwd > tests/scripts/build_path.txt
215
+ pwd > runtime/ tests/scripts/build_path.txt
216
216
%endif # coverage_build
217
217
tar -zcf test-suite.tar.gz infra/scripts
218
218
%endif # test_build
@@ -276,7 +276,7 @@ tar -zxf test-suite.tar.gz -C %{buildroot}%{test_install_home}
276
276
%if %{coverage_build } == 1
277
277
mkdir -p %{buildroot }%{test_install_home }/gcov
278
278
find %{nnfw_workspace } -name "*.gcno" -exec xargs cp {} %{buildroot }%{test_install_home }/gcov/. \;
279
- install -m 0644 ./tests/scripts/build_path.txt %{buildroot }%{test_install_dir }/test/build_path.txt
279
+ install -m 0644 ./runtime/ tests/scripts/build_path.txt %{buildroot }%{test_install_dir }/test/build_path.txt
280
280
%endif # coverage_build
281
281
%endif # test_build
282
282
You can’t perform that action at this time.
0 commit comments