| 68 | } |
| 69 | |
| 70 | auto main(int argc, char *argv[]) -> int |
| 71 | { |
| 72 | QCoreApplication app(argc, argv); |
| 73 | TestEFIBootData test; |
| 74 | if(qgetenv("TEST_ALLOW_NO_EFI_ENTRIES") == "true") |
| 75 | test.setRequireEFIEntries(false); |
| 76 | |
| 77 | return QTest::qExec(&test, argc, argv); |
| 78 | } |
| 79 | |
| 80 | #include "testefibootdata.moc" |
nothing calls this directly
no test coverage detected