Skip to content
This repository was archived by the owner on Apr 13, 2021. It is now read-only.

Commit b3685f4

Browse files
Moved bin files into separate folder.
Signed-off-by: Vlad Ungureanu <vvu@vdev.ro>
1 parent 1c69400 commit b3685f4

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

tests/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ else (CMAKE_CROSSCOMPILING)
5151
COMMENT "Running unit tests"
5252
COMMAND test_libswiftnav
5353
)
54-
file(COPY waas_check.bin DESTINATION ${CMAKE_BINARY_DIR}/tests)
55-
file(COPY waas_data.bin DESTINATION ${CMAKE_BINARY_DIR}/tests)
54+
file(COPY data/waas_check.bin DESTINATION ${CMAKE_BINARY_DIR}/tests)
55+
file(COPY data/waas_data.bin DESTINATION ${CMAKE_BINARY_DIR}/tests)
5656

5757
endif (NOT CHECK_FOUND)
5858
endif (CMAKE_CROSSCOMPILING)

tests/check_viterbi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ START_TEST(test_viterbi27)
4545
FILE *check = NULL;
4646
decision_t decisions[250 * 6];
4747

48-
int output = open ("tmp.bin", O_WRONLY | O_CREAT, 0644);
48+
int output = open("tmp.bin", O_WRONLY | O_CREAT, 0644);
4949
waas_data = fopen("waas_data.bin", "r");
5050
check = fopen("waas_check.bin", "r");
5151

0 commit comments

Comments
 (0)