| 1856 | } |
| 1857 | |
| 1858 | void platformUnix64() { |
| 1859 | REDIRECT; |
| 1860 | const char * const argv[] = {"cppcheck", "--platform=unix64", "file.cpp"}; |
| 1861 | ASSERT(settings->platform.set(Platform::Type::Unspecified)); |
| 1862 | ASSERT_EQUALS_ENUM(CmdLineParser::Result::Success, parseFromArgs(argv)); |
| 1863 | ASSERT_EQUALS(Platform::Type::Unix64, settings->platform.type); |
| 1864 | } |
| 1865 | |
| 1866 | void platformUnix64Unsigned() { |
| 1867 | REDIRECT; |