Signed-off-by: Li Ping 15396232681@163.com --- tests/test-tools | 7 +++++++ 1 file changed, 7 insertions(+)
diff --git a/tests/test-tools b/tests/test-tools index cee882aa..dba3d9f8 100755 --- a/tests/test-tools +++ b/tests/test-tools @@ -6,6 +6,9 @@ cd $BENCHMARK_ROOT/test-tools/mugen || exit : "${testsuite:=smoke-testing}" : "${case:=oe_test_dd_001}"
+f_log=$BENCHMARK_ROOT/test-tools/mugen/logs +f_result=$BENCHMARK_ROOT/test-tools/mugen/results + set_env() { bash runoet.sh -c @@ -35,3 +38,7 @@ run() }
run + +upload_files -t results $f_log +upload_files -t results $f_result +
On Fri, Oct 30, 2020 at 03:25:19PM +0800, Li Ping wrote:
Signed-off-by: Li Ping 15396232681@163.com
tests/test-tools | 7 +++++++ 1 file changed, 7 insertions(+)
diff --git a/tests/test-tools b/tests/test-tools index cee882aa..dba3d9f8 100755 --- a/tests/test-tools +++ b/tests/test-tools @@ -6,6 +6,9 @@ cd $BENCHMARK_ROOT/test-tools/mugen || exit : "${testsuite:=smoke-testing}" : "${case:=oe_test_dd_001}"
+f_log=$BENCHMARK_ROOT/test-tools/mugen/logs +f_result=$BENCHMARK_ROOT/test-tools/mugen/results
set_env() { bash runoet.sh -c @@ -35,3 +38,7 @@ run() }
run
+upload_files -t results $f_log +upload_files -t results $f_result
What would be the dir layout? This?
results/logs/ results/results/
How about
logs/ results/
Thanks, Fengguang