From eb1b96dbeee70cfde2c642832283e6fdaed67a4c Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=B2=9C=EA=B5=90/On-Device=20Lab=28SR=29/Enginee?= =?utf8?q?r/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Mon, 25 Nov 2019 18:38:23 +0900 Subject: [PATCH] Dump manifest for tf2circle UI check (#9176) This commit dumps test manifest for each test case of tf2circe UI check Signed-off-by: Cheongyo Bahk --- compiler/tf2circle-ui-check/checkall.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/compiler/tf2circle-ui-check/checkall.sh b/compiler/tf2circle-ui-check/checkall.sh index 88c8808..447bf04 100755 --- a/compiler/tf2circle-ui-check/checkall.sh +++ b/compiler/tf2circle-ui-check/checkall.sh @@ -21,11 +21,16 @@ while [[ $# -ne 0 ]]; do INFO_FILE="${TESTCASE_DIR}/test.info" PBTXT_FILE="${TESTCASE_DIR}/test.pbtxt" + MANIFEST_FILE="${TESTCASE_DIR}/test.manifest" PB_FILE="${NAME}.pb" echo "Running '${NAME}'" + if [[ -f ${MANIFEST_FILE} ]]; then + # TODO Only dump SUMMARY + cat ${MANIFEST_FILE} + fi echo # Create a pb model -- 2.7.4