Home
last modified time | relevance | path

Searched refs:runThisTest (Results 1 – 4 of 4) sorted by relevance

/dports/audio/py-music21/music21-7.1.0/music21/test/
H A DtestRunner.py232 runThisTest = None
237 runThisTest = sys.argv[1]
239 runThisTest = kwargs.get('runTest', False)
251 if runThisTest is not None:
255 if (name.lower() == runThisTest.lower()
256 or name.lower() == ('test' + runThisTest.lower())
257 or name.lower() == ('xtest' + runThisTest.lower())):
258 runThisTest = name
260 if hasattr(tObj, runThisTest):
263 getattr(tObj, runThisTest)()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/autotest/
H A Dtestnavigationwidget.cpp132 QAction *runThisTest = nullptr; in contextMenuEvent() local
144 runThisTest = new QAction(tr("Run This Test"), &menu); in contextMenuEvent()
145 runThisTest->setEnabled(enabled); in contextMenuEvent()
146 connect(runThisTest, &QAction::triggered, in contextMenuEvent()
187 if (runThisTest) { in contextMenuEvent()
188 menu.addAction(runThisTest); in contextMenuEvent()
195 if (runThisTest || debugThisTest) in contextMenuEvent()
/dports/biology/ugene/ugene-40.1/src/plugins/CoreTests/src/
H A DGUrlTests.cpp52 runThisTest = (platform == currPlatform); in init()
53 if (runThisTest) { in init()
61 if (runThisTest) { in report()
H A DGUrlTests.h40 bool isFileUrl, runThisTest; variable