summaryrefslogtreecommitdiffstats
path: root/src/seastar/tests/dist/consumer/pkgconfig_testing_consumer.cc
blob: f3948a312c4a832c445966663cf115e2a1568d31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#define SEASTAR_TESTING_MAIN

#include <iostream>

#include <seastar/core/future.hh>
#include <seastar/testing/test_case.hh>

namespace sr = seastar;

SEASTAR_TEST_CASE(greeting) {
    return sr::make_ready_future<>().then([] {
        BOOST_REQUIRE(true);
        std::cout << "\"Hello\" from the Seastar pkg-config testing consumer!\n";
    });
}