]> git.proxmox.com Git - ceph.git/blame - ceph/src/seastar/tests/dist/consumer/cmake_testing_consumer.cc
update download target update for octopus release
[ceph.git] / ceph / src / seastar / tests / dist / consumer / cmake_testing_consumer.cc
CommitLineData
11fdf7f2
TL
1#include <iostream>
2
3#include <seastar/core/future.hh>
4#include <seastar/testing/test_case.hh>
5
6namespace sr = seastar;
7
8SEASTAR_TEST_CASE(greeting) {
9 return sr::make_ready_future<>().then([] {
10 BOOST_REQUIRE(true);
11 std::cout << "\"Hello\" from the Seastar CMake testing consumer!\n";
12 });
13}