Skip to content

Commit 5abb3a7

Browse files
committed
move
1 parent 85761a6 commit 5abb3a7

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
tests/a.out
2+
test-suite/a.out

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ include(gtest.cmake)
55

66
SET(COVERAGE OFF CACHE BOOL "Coverage")
77

8-
add_executable(tests unittests.cpp)
8+
add_executable(tests test-suite/unittests.cpp)
99

1010
find_package(Threads)
1111
target_link_libraries(tests gtest ${CMAKE_THREAD_LIBS_INIT})

utils.hpp renamed to src/utils.hpp

File renamed without changes.
26.8 MB
Binary file not shown.

tests/test_utils.cpp renamed to test-suite/test_utils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <limits>
33
#include <cassert>
44
#include <iostream>
5-
#include "../utils.hpp"
5+
#include "../src/utils.hpp"
66

77
void test_removeall() {
88
std::vector<int> vi_A = {1, 2, 3, 4, 3, 6, 7, 3, 9, 8, 3, 6, 7, 3, 3, 0, 3};

unittests.cpp renamed to test-suite/unittests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <vector>
44
#include <limits>
55
#include <iostream>
6-
#include "utils.hpp"
6+
#include "../src/utils.hpp"
77

88
TEST(VI_A, REMOVEALL) {
99
std::vector<int> vi_A = {1, 2, 3, 4, 3, 6, 7, 3, 9, 8, 3, 6, 7, 3, 3, 0, 3};

0 commit comments

Comments
 (0)