summaryrefslogtreecommitdiffstats
path: root/cypress_test
diff options
context:
space:
mode:
authorTamás Zolnai <tamas.zolnai@collabora.com>2021-02-19 10:39:47 +0100
committerTamás Zolnai <zolnaitamas2000@gmail.com>2021-03-08 20:07:33 +0100
commit1257739cd5ddb8f28a6d9c9677a2665e1c616272 (patch)
tree2cc96a7bbed30dd7b52c067256353abd5d265a36 /cypress_test
parentcypress: put wsd related logs into cypress folder. (diff)
downloadonline-1257739cd5ddb8f28a6d9c9677a2665e1c616272.tar.gz
online-1257739cd5ddb8f28a6d9c9677a2665e1c616272.zip
cypress: don't mention video recoring option for interference testing.
cypress video recoring does not work when we have two cypress instances at the same time. Signed-off-by: Tamás Zolnai <tamas.zolnai@collabora.com> Change-Id: Ib807a001aa497ec9c7ef98df4f8f40236890879c (cherry picked from commit a180d01154de68ff2b084c6b9061da57eeee7050)
Diffstat (limited to 'cypress_test')
-rwxr-xr-xcypress_test/run_parallel.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/cypress_test/run_parallel.sh b/cypress_test/run_parallel.sh
index b0345dc63e..dbd444121d 100755
--- a/cypress_test/run_parallel.sh
+++ b/cypress_test/run_parallel.sh
@@ -86,10 +86,14 @@ print_error() {
CypressError: a test failed, please do one of the following:\n\n\
Run the failing test in headless mode:\n\
\tcd cypress_test && make check-${COMMAND} spec=${SPEC}\n" >> ${ERROR_LOG}
- if [ "${TEST_TYPE}" != "multi-user" ]; then
+
+ if [ "${TEST_TYPE}" == "mobile" -o "${TEST_TYPE}" == "desktop" ]; then
echo -e "\
Run the failing test with video recording:\n\
\tcd cypress_test && ENABLE_VIDEO_REC="1" make check-${COMMAND} spec=${SPEC}\n" >> ${ERROR_LOG}
+ fi
+
+ if [ "${TEST_TYPE}" != "multi-user" ]; then
echo -e "\
Open the failing test in the interactive test runner:\n\
\tcd cypress_test && make run-${COMMAND} spec=${SPEC}\n" >> ${ERROR_LOG}