-
Type: Bug
-
Status: Closed
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 47
-
Component/s: None
-
Labels:None
-
Sprint:DEV-46-5, DEV-46-RELEASE, DEV-47-1, DEV-47-2, DEV-47-3, DEV-47-4
-
Affect Type:Userdefined
The script to reproduce the hang. See comment in the script:
```
#!/bin/bash
dir=`pwd`
ugene=<ugene-bin-dir>
qt=<qt-root-dir>
export UGENE_GUI_TEST=1
export LD_LIBRARY_PATH=${ugene}:${qt}/lib
export CMAKE_PREFIX_PATH=${qt}
export CPLUS_INCLUDE_PATH=${qt}/include
export QT_PLUGIN_PATH=${qt}/plugins
export CPATH=${qt}/include
rm -f ${dir}/UGENE-x.list
touch ${dir}/UGENE-x.list
count=1
while [[ ${count} > 0 ]]; do
echo GUITest_regression_scenarios:test_0680 >> ${dir}/UGENE-x.list
echo GUITest_regression_scenarios:test_7154 >> ${dir}/UGENE-x.list
(( count -= 1 ))
done
################################################################
-
-
-
- the test_0680 hangs if the following line is commented ####
cd ${ugene}
################################################################
${ugene}/ugeneuid \
--ini-file=${dir}/UGENED-x.ini \
--gui-test-suite=${dir}/UGENE-x.list \
2>&1 | tee ${dir}/UGENE-x.log
- the test_0680 hangs if the following line is commented ####
-
-
echo
echo '====================='
cat ${dir}/UGENE-x.log | grep -i fail
```