Ошибка компиляции "ошибка: ожидается"; 'в конце списка объявлений "используя Catch-тестирование в C ++ - PullRequest
0 голосов
/ 15 октября 2018

Я пытаюсь выучить C ++, реализовав в нем несколько простых алгоритмов.Чтобы протестировать эти алгоритмы, я бы хотел использовать Catch2 .Вот программа, которую я нашел для бинарного поиска:

#define CATCH_CONFIG_MAIN
#include "catch.hpp"
#include <iostream>
using namespace std;

int binary_search_recursive(int A[], int key, int low, int high) {
    if (low > high) {
        return -1;
    }
    int mid = (low + high)/2;
    if (A[mid] == key) {
        return mid;
    } else if (key < A[mid]) {
        return binary_search_recursive(A, key, low, mid-1);
    } else {
        return binary_search_recursive(A, key, mid+1, high);
    }
}

int binary_search(int A[], int key, int len) {
  return binary_search_recursive(A, key, 0, len - 1);
}


// int main() {
//  int A[] = {1, 2, 4};
//  int key = 4;
//  int len = 3;
//  cout << binary_search(A, key, len);
//  return 0;
// }

TEST_CASE("Binary search works", "[binary_search]") {
    REQUIRE(1 == 1);
}

, где я скопировал один заголовочный файл catch.hpp в тот же каталог.Проблема в том, что когда я пытаюсь скомпилировать его с помощью команды g++ на моем Mac, я получаю следующую ошибку:

$ g++ BinarySearch.cpp
In file included from BinarySearch.cpp:2:
./catch.hpp:380:63: error: expected ';' at end of declaration list
        SourceLineInfo( char const* _file, std::size_t _line ) noexcept
                                                              ^
./catch.hpp:390:27: error: expected ';' at end of declaration list
        bool empty() const noexcept;
                          ^
./catch.hpp:391:63: error: expected ';' at end of declaration list
        bool operator == ( SourceLineInfo const& other ) const noexcept;
                                                              ^
./catch.hpp:392:62: error: expected ';' at end of declaration list
        bool operator < ( SourceLineInfo const& other ) const noexcept;
                                                             ^
./catch.hpp:496:16: error: unknown type name 'constexpr'
        static constexpr char const* const s_empty = "";
               ^
./catch.hpp:496:26: error: expected member name or ';' after declaration
      specifiers
        static constexpr char const* const s_empty = "";
        ~~~~~~~~~~~~~~~~ ^
./catch.hpp:499:20: error: expected ';' at end of declaration list
        StringRef() noexcept
                   ^
./catch.hpp:518:58: error: expected ';' at end of declaration list
        StringRef( char const* rawChars, size_type size ) noexcept
                                                         ^
./catch.hpp:542:38: error: expected ';' at end of declaration list
        void swap( StringRef& other ) noexcept;
                                     ^
./catch.hpp:545:9: error: 'auto' not allowed in function return type
        auto operator == ( StringRef const& other ) const noexcept -> bool;
        ^~~~
./catch.hpp:545:58: error: expected ';' at end of declaration list
        auto operator == ( StringRef const& other ) const noexcept -> bool;
                                                         ^
./catch.hpp:546:9: error: 'auto' not allowed in function return type
        auto operator != ( StringRef const& other ) const noexcept -> bool;
        ^~~~
./catch.hpp:546:58: error: expected ';' at end of declaration list
        auto operator != ( StringRef const& other ) const noexcept -> bool;
                                                         ^
./catch.hpp:548:9: error: 'auto' not allowed in function return type
        auto operator[] ( size_type index ) const noexcept -> char;
        ^~~~
./catch.hpp:548:50: error: expected ';' at end of declaration list
        auto operator[] ( size_type index ) const noexcept -> char;
                                                 ^
./catch.hpp:551:9: error: 'auto' not allowed in function return type
        auto empty() const noexcept -> bool {
        ^~~~
./catch.hpp:551:27: error: expected ';' at end of declaration list
        auto empty() const noexcept -> bool {
                          ^
./catch.hpp:559:9: error: 'auto' not allowed in function return type
        auto c_str() const -> char const*;
        ^~~~
./catch.hpp:559:27: error: expected ';' at end of declaration list
        auto c_str() const -> char const*;
                          ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.

Короче говоря, сам исходный код Catch2 генерирует несколько одинакового синтаксисаошибка.Я подозреваю, что это может быть связано с «версией» C ++, написанной для Catch, которая отличается от той, которую ожидает мой компилятор, но я не смог быстро определить, была ли это проблема из поиска Google по данной ошибке.

Вот подробности моего g++ компилятора:

$ g++ -v
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 10.0.0 (clang-1000.11.45.2)
Target: x86_64-apple-darwin17.7.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

Есть идеи, что вызывает эту ошибку, и как я могу заставить модульные тесты Catch2 работать?

1 Ответ

0 голосов
/ 15 октября 2018

Я нашел ответ на https://github.com/catchorg/Catch2/issues/487. Очевидно, вам нужно указать, что компилятор должен использовать C ++ 11:

$ g++ -std=c++11 BinarySearch.cpp
$ ./a.out
===============================================================================
All tests passed (1 assertion in 1 test case)

Короче говоря, с опцией -std=c++11 это работает.

...