Skip to content
Snippets Groups Projects
Commit 3d701905 authored by Roman Tolchenov's avatar Roman Tolchenov
Browse files

Trying to fix the linux builds. Re #23920

parent 9e553ebe
No related merge requests found
...@@ -46,6 +46,7 @@ fi ...@@ -46,6 +46,7 @@ fi
LD_PRELOAD=${LOCAL_PRELOAD} TCMALLOC_RELEASE_RATE=${TCM_RELEASE} \ LD_PRELOAD=${LOCAL_PRELOAD} TCMALLOC_RELEASE_RATE=${TCM_RELEASE} \
TCMALLOC_LARGE_ALLOC_REPORT_THRESHOLD=${TCM_REPORT} \ TCMALLOC_LARGE_ALLOC_REPORT_THRESHOLD=${TCM_REPORT} \
@MTD_PATH_DEFINITION@ \
PYTHONPATH=${LOCAL_PYTHONPATH} \ PYTHONPATH=${LOCAL_PYTHONPATH} \
QT_API=${LOCAL_QT_API} \ QT_API=${LOCAL_QT_API} \
LD_LIBRARY_PATH=${LOCAL_LDPATH} \ LD_LIBRARY_PATH=${LOCAL_LDPATH} \
......
...@@ -79,8 +79,6 @@ class ScriptRunner(object): ...@@ -79,8 +79,6 @@ class ScriptRunner(object):
if self.script_iter is None: if self.script_iter is None:
if self.close_on_finish: if self.close_on_finish:
self.widget.close() self.widget.close()
app.quit()
app = None
return return
# Run test script until the next 'yield' # Run test script until the next 'yield'
pause_sec = self.script_iter.next() pause_sec = self.script_iter.next()
...@@ -97,8 +95,6 @@ class ScriptRunner(object): ...@@ -97,8 +95,6 @@ class ScriptRunner(object):
self.parent_iter = None self.parent_iter = None
elif self.close_on_finish: elif self.close_on_finish:
self.widget.close() self.widget.close()
app.quit()
app = None
except: except:
self.widget.close() self.widget.close()
traceback.print_exc() traceback.print_exc()
...@@ -123,8 +119,8 @@ def open_in_window(widget_name, script, attach_debugger=True, pause=0, close_on_ ...@@ -123,8 +119,8 @@ def open_in_window(widget_name, script, attach_debugger=True, pause=0, close_on_
global app global app
if attach_debugger: if attach_debugger:
raw_input('Please attach the Debugger now if required. Press any key to continue') raw_input('Please attach the Debugger now if required. Press any key to continue')
setup_library_paths()
if app is None: if app is None:
setup_library_paths()
app = QApplication([""]) app = QApplication([""])
if isinstance(widget_name, six.string_types): if isinstance(widget_name, six.string_types):
w = create_widget(widget_name) w = create_widget(widget_name)
......
...@@ -4,6 +4,7 @@ import unittest ...@@ -4,6 +4,7 @@ import unittest
from qtpy.QtWidgets import QMessageBox, QApplication from qtpy.QtWidgets import QMessageBox, QApplication
from qtpy.QtCore import Qt, QMetaObject from qtpy.QtCore import Qt, QMetaObject
from mantid import FrameworkManager
from mantidqt.utils.qt.test.test_window import GuiTestBase from mantidqt.utils.qt.test.test_window import GuiTestBase
from mantidqt.widgets.fitpropertybrowser import FitPropertyBrowser from mantidqt.widgets.fitpropertybrowser import FitPropertyBrowser
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment