Skip to content

Commit

Permalink
Drop XFAIL since now all tests pass on Tizen
Browse files Browse the repository at this point in the history
  • Loading branch information
arkq committed Aug 11, 2023
1 parent ef72f35 commit 630833c
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/test_driver/tizen/chip_tests/runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,6 @@ set -e
# Print CHIP logs on stdout
dlogutil CHIP &

# List of tests which are currently expected to fail on Tizen platform.
# TODO: Remove this list once the tests are fixed.
XFAIL_TESTS=(
TestPASESession
)

FAILED=()
STATUS=0

Expand All @@ -41,11 +35,6 @@ while IFS= read -r TEST; do
RV=0
"$TEST" || RV=$?

# If test is expected to fail, report failure if it succeeds
if [[ " ${XFAIL_TESTS[*]} " == *" ${NAME} "* ]]; then
[[ $RV -ne 0 ]] && RV=0 || RV=1
fi

if [ "$RV" -eq 0 ]; then
echo -e "DONE: \e[32mSUCCESS\e[0m"
else
Expand Down

0 comments on commit 630833c

Please sign in to comment.