Skip to content

Commit 744b998

Browse files
revert changes in script
1 parent cb16b0e commit 744b998

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

scripts/run-ios-functional-tests.sh

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,12 @@ do
1717

1818
# Listen to tests
1919
echo "Start listening test results on socket."
20-
nc -l 127.0.0.1 16384 2>&1 | tee results.xml &
20+
nc -l 127.0.0.1 16384 > results.xml &
2121
RESULTS=$!
2222

23-
echo "Xcode version:"
24-
xcodebuild -version
25-
2623
# Run tests
2724
echo "Run test app..."
28-
xcrun simctl launch "${IOS_DEVICE}" com.contoso.test.functional &
29-
log stream --style syslog
25+
xcrun simctl launch "${IOS_DEVICE}" com.contoso.test.functional
3026

3127
# Wait results
3228
echo "Waiting test results..."
@@ -48,4 +44,4 @@ done
4844
xcrun simctl shutdown "${IOS_DEVICE}"
4945

5046
# Exit with test result code (0 for success, non 0 for failure)
51-
xmllint --xpath "//*[local-name()='Counters'][@failed = 0]" results.xml > /dev/null 2>&1
47+
xmllint --xpath "//*[local-name()='Counters'][@failed = 0]" results.xml > /dev/null 2>&1

0 commit comments

Comments
 (0)