GCC Code Coverage Report


Directory: cvmfs/
File: cvmfs/swissknife.cc
Date: 2024-04-28 02:33:07
Exec Total Coverage
Lines: 0 2 0.0%
Branches: 0 0 -%

Line Branch Exec Source
1 /**
2 * This file is part of the CernVM File System
3 *
4 * This tool acts as an entry point for all the server-related
5 * cvmfs tasks, such as uploading files and checking the sanity of
6 * a repository.
7 */
8
9 #include "swissknife.h"
10 #include "cvmfs_config.h"
11
12 #include <unistd.h>
13
14 #include <cassert>
15 #include <vector>
16
17 #include "manifest.h"
18 #include "manifest_fetch.h"
19 #include "util/logging.h"
20
21 using namespace std; // NOLINT
22
23 namespace swissknife {
24
25 Command::Command() {}
26
27 Command::~Command() {}
28
29 } // namespace swissknife
30