GCC Code Coverage Report


Directory: ./
File: openvdb/openvdb/unittest/main.cc
Date: 2022-07-25 17:40:05
Exec Total Coverage
Lines: 2 2 100.0%
Functions: 1 1 100.0%
Branches: 0 0 -%

Line Branch Exec Source
1 // Copyright Contributors to the OpenVDB Project
2 // SPDX-License-Identifier: MPL-2.0
3
4 #include <algorithm> // for std::shuffle()
5 #include <cmath> // for std::round()
6 #include <cstdlib> // for EXIT_SUCCESS
7 #include <cstring> // for strrchr()
8 #include <exception>
9 #include <fstream>
10 #include <iostream>
11 #include <random>
12 #include <string>
13 #include <vector>
14
15 #include "gtest/gtest.h"
16
17 int
18 1 main(int argc, char *argv[])
19 {
20 1 ::testing::InitGoogleTest(&argc, argv);
21 return RUN_ALL_TESTS();
22 }
23