File: smoke_test.cpp

package info (click to toggle)
libsfml 3.0.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 13,704 kB
  • sloc: cpp: 52,754; ansic: 24,944; objc: 668; sh: 172; xml: 25; makefile: 18
file content (29 lines) | stat: -rw-r--r-- 856 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <iostream>
#include <SFML/Audio.hpp>
#include <SFML/Graphics.hpp>
#include <SFML/Network.hpp>
#include <SFML/OpenGL.hpp>
#include <SFML/System.hpp>
#include <SFML/Window.hpp>

int main()
{
    // The build test doesn't check any graphics since that would require a
    // display server. We just test some basic Network / System functionality.
    // However when building we can still include the other headers to ensure
    // they compile.

    // Print local IP
    if (auto ip = sf::IpAddress::getLocalAddress()) {
        std::cout << "Local IP = " << (*ip).toString() << std::endl;
    } else {
        std::cout << "Could not get local IP" << std::endl;
        return 1;
    }

    // Call some time functions from sfml-system
    if ((sf::seconds(5) + sf::milliseconds(1234)).asMilliseconds() != 6234)
        return 1;

    return 0;
}