This file is indexed.

/usr/include/wibble/sys/process.test.h is in libwibble-dev 1.1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
30
31
/* -*- C++ -*- (c) 2007 Petr Rockai <me@mornfall.net>
               (c) 2007 Enrico Zini <enrico@enricozini.org> */

#include <wibble/sys/process.h>

#include <wibble/test.h>

using namespace std;
using namespace wibble::sys;

struct TestProcess {
    Test getcwdAndChdir() {
#ifdef POSIX
        string cwd = process::getcwd();
        process::chdir("/");
        assert_eq(process::getcwd(), string("/"));
        process::chdir(cwd);
        assert_eq(process::getcwd(), cwd);
#endif
    }

    Test umask() {
#ifdef POSIX
        mode_t old = process::umask(0012);
        assert_eq(process::umask(old), 0012u);
#endif
    }

};

// vim:set ts=4 sw=4: