diff options
author | Jan Dalheimer <jan@dalheimer.de> | 2013-12-16 20:10:11 +0100 |
---|---|---|
committer | Jan Dalheimer <jan@dalheimer.de> | 2013-12-16 20:10:11 +0100 |
commit | ae68adc3a536525990b0668703fd74eded8ccfde (patch) | |
tree | bc41d2f4678fd3e317e4a66a4618c7ec6e342125 /tests/TestUtil.h | |
parent | 7f884a18a85eca8c1a395ab0e9d421f17a98f142 (diff) | |
download | MultiMC-ae68adc3a536525990b0668703fd74eded8ccfde.tar MultiMC-ae68adc3a536525990b0668703fd74eded8ccfde.tar.gz MultiMC-ae68adc3a536525990b0668703fd74eded8ccfde.tar.lz MultiMC-ae68adc3a536525990b0668703fd74eded8ccfde.tar.xz MultiMC-ae68adc3a536525990b0668703fd74eded8ccfde.zip |
Fix some failing tests and attempt to fix running tests on a headless computer
Diffstat (limited to 'tests/TestUtil.h')
-rw-r--r-- | tests/TestUtil.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/tests/TestUtil.h b/tests/TestUtil.h index 865fcf87..5de8c4f2 100644 --- a/tests/TestUtil.h +++ b/tests/TestUtil.h @@ -24,11 +24,18 @@ struct TestsInternal #define MULTIMC_GET_TEST_FILE(file) TestsInternal::readFile(QFINDTESTDATA( file )) #define MULTIMC_GET_TEST_FILE_UTF8(file) TestsInternal::readFileUtf8(QFINDTESTDATA( file )) +#ifdef Q_OS_LINUX +# define _MMC_EXTRA_ARGV , "-platform", "offscreen" +# define _MMC_EXTRA_ARGC 2 +#else +# define _MMC_EXTRA_ARGV +# define _MMC_EXTRA_ARGC 0 +#endif #define QTEST_GUILESS_MAIN_MULTIMC(TestObject) \ int main(int argc, char *argv[]) \ { \ - char *argv_[] = { argv[0] }; \ - int argc_ = 1; \ + char *argv_[] = { argv[0] _MMC_EXTRA_ARGV }; \ + int argc_ = 1 + _MMC_EXTRA_ARGC; \ MultiMC app(argc_, argv_, QDir::temp().absoluteFilePath("MultiMC_Test")); \ app.setAttribute(Qt::AA_Use96Dpi, true); \ TestObject tc; \ |