| 15 | |
| 16 | |
| 17 | void SystemLibTest::test() { |
| 18 | TestUtils utils; |
| 19 | |
| 20 | #ifdef Q_OS_UNIX |
| 21 | QString bin = TestBinDir + "TestCPPOnly"; |
| 22 | QString qmake = TestQtDir + "bin/qmake"; |
| 23 | |
| 24 | auto comapareTree = utils.createTree( |
| 25 | { |
| 26 | "./" + DISTRO_DIR + "/TestCPPOnly.sh", |
| 27 | "./" + DISTRO_DIR + "/bin/qt.conf", |
| 28 | "./" + DISTRO_DIR + "/bin/TestCPPOnly", |
| 29 | "./" + DISTRO_DIR + "/lib/systemLibs/libgcc_s.so", |
| 30 | "./" + DISTRO_DIR + "/lib/systemLibs/libstdc++.so" |
| 31 | }); |
| 32 | |
| 33 | #endif |
| 34 | |
| 35 | runTestParams({"-bin", bin, "clear" , |
| 36 | "deploySystem", |
| 37 | "-qmake", qmake, |
| 38 | }, &comapareTree, true); |
| 39 | |
| 40 | |
| 41 | } |
nothing calls this directly
no test coverage detected